Codeforces Round #392 (Div. 2), problem: (B) Blown Garland Solution in C/C++ C/C++ Programming January 20, 2017 0 Admin #include <stdio.h> #include <string.h> int cnt(char *s, char c) { int l, i, j, k; l = strlen(s); j = -1; for (i = 0; i < l; i++) if (s == c) … Continue