-
문자열문제프로그래머스알고리즘 2020. 9. 30. 23:52
#include <string> #include <vector> using namespace std; bool solution(string s) { bool answer = true; int check=0; check = s.length(); if(check!=4&&check!=6) { answer = false; } else { for(int i=0;i<check;i++) { if(s.at(i)<48||s.at(i)>57) { answer = false; break; } } } return answer; }
'프로그래머스알고리즘' 카테고리의 다른 글
위장 (0) 2020.10.01 완주하지 못한 선수 hash map 사용 (0) 2020.10.01 완주하지 못한 선수 (0) 2020.10.01 콜라츠 추측 (0) 2020.10.01 수박문제 (0) 2020.10.01