Swift - 백준 1620번
·
Algorithm/Baekjoon
딕셔너리는 Key : Value 로 구성되어 있는 자료형으로 dic.key, dic.value 로 값에 접근할 수 있습니다  [String:String] 타입으로 문제를 해결한다면 좀 더 짧게 문제를 해결할 수 있습니다.import Foundationlet count = readLine()!.split(separator: " ").map { Int($0)! }var dictionary: [String:String] = [:]for i in 1...count[0] { let tmp = readLine()! dictionary[String(i)] = tmp dictionary[tmp] = String(i)}for _ in 1...count[1] { let tmp = readLine()!..
ytw_developer
'swift - 백준 1620번' 태그의 글 목록