[Codewars] [8Kyu] Switch it Up!
Codewars: Achieve mastery through challenge Codewars is where developers achieve code mastery through challenge. Train on kata in the dojo and reach your highest potential. www.codewars.com 이번 문제는 Int로 받은 값에 대해서 String으로 반환해주는 문제입니다. 1. Swift 1-1. 본인의 풀이 let numArr : [String] = [ "Zero", "One", "Two", "Three", "Four", "Five", "Six", "Seven", "Eight", "Nine" ] func switchItUp(_ number: Int) -> St..