프로그래머스 - 숫자 문자열과 영단어 C# 풀이
2022. 2. 27.
1478 → "one4seveneight" 234567 → "23four5six7" 10203 → "1zerotwozero3" 위와같이 영숫자문자열을 숫자로 변환하여 반환하는 문제인데... 조금 바보같이 풀었다. 풀고나서 다른사람이 푼걸 보니 아 왜 복잡하게 생각했지 싶었다.. using System; using System.Collections.Generic; public class Solution { private Dictionary _dic = new Dictionary() { {"zero", 0}, {"one", 1}, {"two", 2}, {"three", 3}, {"four", 4}, {"five", 5}, {"six", 6}, {"seven", 7}, {"eight", 8}, {"nine",..