728x90
https://school.programmers.co.kr/learn/courses/30/lessons/81301
소스코드
using System;
using System.Collections.Generic;
public class Solution
{
public int solution(string s)
{
string[] strNum = new string[10] { "zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine", };
Dictionary<string, string> strDic = new Dictionary<string, string>();
for (int i = 0; i < strNum.Length; i++)
strDic[strNum[i]] = i.ToString();
foreach (var item in strDic)
s = s.Replace(item.Key, item.Value);
return int.Parse(s);
}
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv.1 로또의 최고 순위와 최저 순위 C# (0) | 2023.06.15 |
---|---|
[프로그래머스]Lv.1 약수의 개수와 덧셈 C# (0) | 2023.06.15 |
[프로그래머스]Lv.1 없는 숫자 더하기 C#(Except, Sum) (0) | 2023.06.15 |
[프로그래머스]Lv.1 최소직사각형 C# (0) | 2023.06.15 |
[프로그래머스]Lv.1 나머지가 1이 되는 수 찾기 C# (0) | 2023.06.15 |