https://www.acmicpc.net/problem/3273 내 코드let n = Int(readLine()!)! let arr = readLine()!.split(separator: " ").map { Int($0)! }.sorted() let target = Int(readLine()!)! var left = 0 var right = n - 1 var result = 0 while left < right { if arr[left] + arr[right] == target { result += 1 } if arr[left] + arr[right] < target { left += 1 } else { right -= 1 } } print(result) Review이중 for문을 통해 모든 경우의 수..