Level 1> 문자열 내 p와 y의 개수
-
Level 1> 문자열 내 p와 y의 개수프로그래머스(Programmers) 2018. 8. 8. 15:07
https://programmers.co.kr/learn/courses/30/lessons/12916 1. 문제 2. 알고리즘키워드 - 구현, 문자열 3. 코드 123456789101112131415161718192021222324252627282930#include #include #include #include using namespace std; bool solution(string s){ bool answer = true; const int size = s.size(); int count_p = 0; int count_y = 0; transform(s.begin(), s.end(), s.begin(), ::tolower); for(int i=0; i