Short Cake
8PM - Animal Crossing Wild World

사생활 보호 설정

https://gamjia.tistory.com

Mini Rooms

  • 내 미니룸
  • 미니미설정
  • 미니룸설정
  • 답글수 [0]

What Friends Say

한마디로 표현해봐~

1촌평 관리

12918번 문자열 다루기 기본

GamJia 2023. 3. 27. 09:03

코딩테스트 연습 - Level 1 - 문자열 다루기 기본

https://programmers.co.kr/learn/courses/30/lessons/12918

#include <string>
#include <vector>

using namespace std;

bool solution(string s) {
    bool answer = true;
    if(s.size()!=4&&s.size()!=6)
    {
        answer=false;
    }
    
    for(int i=0;i<s.size();i++)
    {
        if(isdigit(s[i])==false)
        {
            answer=false;
        }
    }
    return answer;
}