-
[프로그래머스] 문자열 내 p와 y의 개수 c++Coding Test/programmers 2022. 9. 12. 16:31728x90
문제 설명
대문자와 소문자가 섞여있는 문자열 s가 주어집니다. s에 'p'의 개수와 'y'의 개수를 비교해 같으면 True, 다르면 False를 return 하는 solution를 완성하세요. 'p', 'y' 모두 하나도 없는 경우는 항상 True를 리턴합니다. 단, 개수를 비교할 때 대문자와 소문자는 구별하지 않습니다.
예를 들어 s가 "pPoooyY"면 true를 return하고 "Pyy"라면 false를 return합니다.
제한 사항
- 문자열 s의 길이 : 50 이하의 자연수
- 문자열 s는 알파벳으로만 이루어져 있습니다.
입출력 예
s answer "pPoooyY" true "Pyy" false 풀이
#include <string> #include <iostream> #include <map> using namespace std; bool solution(string s) { bool answer = true; map<char, int> hash; for(const auto &it : s){ if(it == 'P'){ hash['p'] += 1; } else if(it == 'Y'){ hash['y'] += 1; } else{ hash[it] += 1; } } return hash['p'] == hash['y'] ? true : false; }
map을 사용하지 않고 p와 y 개수를 카운트하는 방법도 있다.
#include <string> #include <iostream> using namespace std; bool solution(string s) { int p = 0; int y = 0; for (int i = 0; i < s.length(); i++) { if (s[i] == 'p' || s[i] == 'P') p++; else if (s[i] == 'y' || s[i] == 'Y') y++; } return p == y; }
#include <string> #include <iostream> using namespace std; bool solution(string s) { bool answer = true; int cnt = 0; for(int i = 0 ; i< s.size(); i++) if(s[i] == 'p' || s[i] == 'P') cnt++; else if(s[i] == 'y' || s[i] == 'Y') cnt--; return cnt ? false : true; }
728x90'Coding Test > programmers' 카테고리의 다른 글
[프로그래머스] 문자열을 정수로 바꾸기 c++ (0) 2022.09.12 [프로그래머스] 하샤드 수 C++ (2) 2022.09.12 [프로그래머스] 정수 내림차순으로 배치하기 (0) 2022.09.12 [프로그래머스] 자연수 뒤집어 배열로 만들기 c++ (0) 2022.09.12 [프로그래머스] 평균 구하기 c++ (0) 2022.09.12