https://programmers.co.kr/learn/courses/30/lessons/12916
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #include <string> #include <iostream> #include<algorithm> using namespace std; int cnt[2]; bool solution(string s) { transform(s.begin(), s.end(), s.begin(), ::tolower); for (int i = 0; i < s.length(); i++) { if (s[i] == 'p') cnt[0]++; else if (s[i] == 'y') cnt[1]++; } if (cnt[0] == cnt[1]) return 1; else return 0; } | cs |
'알고리즘 문제 풀이 > 프로그래머스' 카테고리의 다른 글
프로그래머스: 소수찾기 (C++) (0) | 2019.09.27 |
---|---|
프로그래머스: 타겟 넘버 (C++) (0) | 2019.09.20 |
프로그래머스: 전화번호 목록 (0) | 2019.09.19 |
카카오 2017 블라인드 테스트 1차: 셔틀버스 (C++) (0) | 2019.08.25 |
카카오 2017 블라인드 테스트 1차: 캐시 (C++) (0) | 2019.08.25 |