문제
코드
#include <string>
#include <vector>
using namespace std;
bool solution(string s) {
bool answer = true;
for(int i=0; i<s.length(); i++){
if(!(s.length()==4||s.length()==6)){
answer=false;
break;
}
if(!(s[i]-'0'>=0&&s[i]-'0'<=9)){
answer=false;
break;
}
}
return answer;
}
'Algorithm 🧑🏻💻 > 프로그래머스(Programmers)' 카테고리의 다른 글
[c++] 프로그래머스 - 상호평가( Level 1) (0) | 2021.10.21 |
---|---|
[c++] 프로그래머스 - 부족한 금액 계산하기( Level 1) (0) | 2021.10.21 |
[c++] 프로그래머스 - 문자열 압축( Level 2, 2020 카카오 블라인드) (0) | 2021.10.21 |
[c++] 프로그래머스 - 문자열 내림차순으로 배치하기( Level 1) (0) | 2021.10.21 |
[c++] 프로그래머스 - 문자열 내 마음대로 정렬하기( Level 1) (0) | 2021.10.21 |
[c++] 프로그래머스 - 문자열 내 p와 y의 개수( Level 1) (0) | 2021.10.21 |
댓글