Level 1 > 문자열 다루기 기본
-
Level 1 > 문자열 다루기 기본프로그래머스(Programmers) 2018. 8. 8. 16:24
https://programmers.co.kr/learn/courses/30/lessons/12918 1. 문제 2. 알고리즘키워드 - 구현, 문자열 3. 코드 123456789101112131415161718192021222324#include #include using namespace std; bool solution(string s) { bool answer = false; const int size = s.size(); if(size == 4 || size == 6) { for(int i=0; i= '0' && s[i]