Open devLupin opened 11 months ago
for(int i=0; i<str.size(); i++) str[i] = tolower(str[i]);
더 좋은 코드를 생각해냈다.
for(char& c : str) c = tolower(c);