프로그래머스 - 튜플
·
Algorithm/programmers
이때 튜플은 빈도수로 많이 나온 값이 앞에 오도록 정렬하는 문제입니다 import Foundationfunc solution(_ s:String) -> [Int] { var answer: [Int:Int] = [:] var list = s while !list.isEmpty { var tmp = "" if list.removeLast() == "}" { if list.last! == "}" { list.removeLast() } while list.last != "{" { tmp += String(list.remove..
ytw_developer
'프로그래머스 튜플' 태그의 글 목록