728x90
반응형
isdigit()함수를 써서 풀었다.
#include <string>
#include <vector>
using namespace std;
bool solution(string s) {
bool answer = true;
for(int i = 0 ; i < s.size(); i++)
{
if((s.size() == 4 || s.size() == 6)&& isdigit(s[i]))
{
answer = true;
}
else
{
answer = false;
break;
}
}
return answer;
}
다른 사람의 풀이로는 아래!
#include <string>
#include <vector>
using namespace std;
bool solution(string s) {
if (s.length() != 4 && s.length() != 6)
return false;
for (int i = 0; i < s.length(); i++) {
if (s[i] < 48 || s[i] > 57)
return false;
}
return true;
}
728x90
반응형
'Computer Science > Coding Test' 카테고리의 다른 글
c++(cpp) 프로그래머스 - 코딩 테스트 : 문자열 내 p와 y의 개수 (0) | 2022.08.11 |
---|---|
c++(cpp) 프로그래머스 - 코딩 테스트 : 문자열 내림차순으로 배치하기 (0) | 2022.08.11 |
c++(cpp) 프로그래머스 - 코딩 테스트 : 약수의 합 (0) | 2022.08.11 |
c++(cpp) 프로그래머스 - 코딩테스트 : 예산 (0) | 2022.08.11 |
c++(cpp) 프로그래머스 - 코딩테스트 : [1차]비밀지도 (0) | 2022.08.11 |
댓글