-
Level 1> 문자열 내 p와 y의 개수프로그래머스(Programmers) 2018. 8. 8. 15:07반응형
https://programmers.co.kr/learn/courses/30/lessons/12916
1. 문제
2. 알고리즘
키워드 - 구현, 문자열
3. 코드
123456789101112131415161718192021222324252627282930#include <string>#include <iostream>#include <algorithm>#include <locale>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<size; i++) {if(s[i] == 'y')count_y++;if(s[i] == 'p')count_p++;}if(count_p != count_y)answer = false;return answer;}cs 반응형'프로그래머스(Programmers)' 카테고리의 다른 글
Level 1 > 문자열 다루기 기본 (0) 2018.08.08 Level 1 > 문자열 내림차순으로 배치하기 (0) 2018.08.08 Level 1 > 두 정수 사이의 합 (0) 2018.08.08 Level 1 > 나누어 떨어지는 숫자 배열 (0) 2018.08.08 프로그래머스 > Level 1 > 가운데 글자 가져오기 (0) 2018.08.08