*문자열중에 같은 문자 확인(string) 대소문자 구분 없음. 'p', 'y' 의 개수가 같으면 true, 다르면 false 리턴. #include <iostream> #include <string> using namespace std; bool solution(string s) { bool answer = true; int a = 0, b = 0; for(int i = 0; i < s.length(); i++) { string str = s.substr(i, 1); if(str == "p" || str == "P") a++; else if(str == "y" || str == "Y") b++; } if(a == b) answer = true; else answer = false; return answer; } | cs |
::public/코딩테스트 풀이