반응형
import Foundation
var input = ""
while true {
input = readLine()!
if input == "0" {
break
}
print(input == String(input.reversed()) ? "yes" : "no")
}
반응형
'📝 코테 > BOJ' 카테고리의 다른 글
[Swift] 백준1436 (0) | 2023.03.23 |
---|---|
[Swift] 백준1181 (0) | 2023.03.23 |
[Swift] 백준 1085 직사각형에서 탈출 (1) | 2023.03.22 |
[Swift] 백준1018 (0) | 2023.03.22 |
[Swift] 백준 2475 (0) | 2023.03.22 |