C로 구현한 1157번 단어 공부 문제 풀이입니다. #include int main() { char input[1000001]; int spell[26] = {0,}; int count=0; char num = '?'; scanf("%s", input); for(int i=0; input[i]!='\0'; i++) { if(input[i] >= 'a') input[i] = input[i] - 32; spell[input[i]-65]++; } for(int j=0; j count) { count = spell[j]; num = j; } else if(spell[j] == count) num = '?'; } if(num != '?') printf("%c", num+65); else printf("?"); }..