반응형
포인트
1. 기본적인 조건들을 잘 구현을 할 수 있는가?
🧶문서는 항상 수정 될 수 있습니다. 비판은 환영합니다.
#include <string>
#include <vector>
using namespace std;
bool solution(string s) {
if(s.size()!=4&&s.size()!=6) return false;
for(auto ele :s){
if(ele<'0'||ele>'9') return false;
}
return true;
}
python
def solution(s):
if not (len(s)==4 or len(s)==6):
return False
try:
int(s)
except:
return False
return True
반응형
'알고리즘' 카테고리의 다른 글
[알고리즘] 완주하지 못한 선수 (0) | 2021.01.26 |
---|---|
[알고리즘] Sqrt(x) (0) | 2021.01.22 |
[알고리즘] 핸드폰 번호 가리기 (0) | 2021.01.22 |
[알고리즘] Valid Parentheses (0) | 2021.01.21 |
[알고리즘] Valid Anagram (0) | 2021.01.21 |
댓글