문제 설명
해결방안
using System;
public class Solution {
public int solution(string s) {
int answer = 0;
s = s.Replace("zero", "0");
s = s.Replace("one", "1");
s = s.Replace("two", "2");
s = s.Replace("three", "3");
s = s.Replace("four", "4");
s = s.Replace("five", "5");
s = s.Replace("six", "6");
s = s.Replace("seven", "7");
s = s.Replace("eight", "8");
s = s.Replace("nine", "9");
int temp;
bool strToInt = int.TryParse(s, out temp);
if(strToInt) answer = temp;
return answer;
}
}
'알고리즘' 카테고리의 다른 글
프로그래머스 C# 두 개 뽑아서 더하기 (0) | 2024.07.25 |
---|---|
프로그래머스 C# 문자열 내 마음대로 정렬하 (0) | 2024.06.27 |
프로그래머스 C# 시저 암호 (0) | 2024.06.27 |
프로그래머스 C# 최소직사각형 (0) | 2024.06.27 |
프로그래머스 C# 크기가 작은 부분 문자 (0) | 2024.06.27 |