[Swift] 백준 1085 직사각형에서 탈출
·
📝 코테/BOJ
import Foundation let input = readLine()!.components(separatedBy: " ").map { Int($0)! } let x = input[0] let y = input[1] let w = input[2] let h = input[3] print(min(w - x, x, h - y, y)) 머릿속으로 좌표계 상상하면서 간단하게 풀었다.