728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/12918
public class Solution {
public bool solution(string s) {
bool answer = false;
if (s.Length == 4 || s.Length == 6)
answer = int.TryParse(s, out int temp);
return answer;
}
}
반응형
'프로그래머스_C# > Level_1' 카테고리의 다른 글
[프로그래머스 C#] 문자열 내 마음대로 정렬하기 (0) | 2021.09.01 |
---|---|
[프로그래머스 C#] 나누어 떨어지는 숫자 배열 (0) | 2021.09.01 |
[프로그래머스 C#] 문자열 내림차순으로 배치하기 (0) | 2021.08.31 |
[프로그래머스 C#] 소수 찾기 (0) | 2021.08.30 |
[프로그래머스 C#] 서울에서 김서방 찾기 (0) | 2021.08.30 |