We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
char *s;
int i, NumberCounter[10] = {0,0,0,0,0,0,0,0,0};
s = malloc(1024 * sizeof(char));
scanf("%[^\n]", s);
for (i=0;s[i]!='\0';i++)
{
if (isdigit(s[i]))
++NumberCounter[s[i]-'0'];
}
for (i=0; i<10;i++)
printf ("%d ", NumberCounter[i]);
return 0;
}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Digit Frequency
You are viewing a single comment's thread. Return to all comments →
int main() {
return 0; }