본문 바로가기

Problem Solving/프로그래머스

문자열 다루기 기본

#include <string>
#include <vector>
#include <algorithm>
using namespace std;

bool solution(string s) {
    int a = 0;
    if(s.length() == 4 || s.length() == 6) {
        for(int i = 0; i < s.length(); ++i) {
            if(a > 0) break;
            if(isdigit(s[i]) == false) {
                ++a;
            }
        } return a == 0 ? true : false;
    }else return false;
}

'Problem Solving > 프로그래머스' 카테고리의 다른 글

구명보트  (0) 2022.01.16
실패율  (0) 2022.01.16
문자열 내 p와 y의 개수  (0) 2022.01.16
스킬트리  (0) 2022.01.16
나누어 떨어지는 숫자 배열  (0) 2022.01.16