프로그래머스 C# 문자열 다루기 기본
·
알고리즘
문제 해결방안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; }} int.TryParse 함수를 사용하면 int로 변환되는지 안되는지 여부를 bool값으로 받아볼 수 있다.또한, 변환이 가능할 경우 그 값을 int로 변경한 후 넘겨주게 되는데 이것을 받을 자료형도 필요하다.