[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)) 머릿속으로 좌표계 상상하면서 간단하게 풀었다.
[Swift] 백준1018
·
📝 코테/BOJ
let mn = readLine()!.split(separator: " ").map{Int($0)!} let m = mn[0] let n = mn[1] var board = [[String]]() for _ in 0..
[Swift] 백준 2475
·
📝 코테/BOJ
let input = readLine()!.split(separator: " ").map { Int($0)! * Int($0)! }.reduce(0, +) print(input % 10) 숫자들의 합을 더할때는 .reduce(0, +)를 쓰면 편하다.
JerryiOS
Jerry