728x90
https://www.acmicpc.net/problem/2920
sorted()를 써서 비교를 할 수 있는지 없는지 물어보는 문제.
sort()와 sorted()의 다른점도 함께 알아 볼 수 있는 문제였다.
https://pskbhnsr.tistory.com/48
결과.
import Foundation
let scale = [1,2,3,4,5,6,7,8]
let input = readLine()!.split(separator: " ").map {Int($0)!}
let scaleSorted = scale.sorted(by: >)
if scale == input {
print("ascending")
}else if scaleSorted == input {
print("descending")
}else {
print("mixed")
}
728x90
'PS' 카테고리의 다른 글
[swift] 17256 달달함이 넘쳐흘러 (0) | 2022.12.27 |
---|---|
[swift] 15727 - 조별과제를 하려는데 조장이 사라졌다. (0) | 2022.12.26 |
[Swift] 2884 알람시계 (0) | 2022.11.30 |
[swift] 9086 - 문자열 (0) | 2022.11.25 |
11866번 요세푸스 문제 : SWIFT (1) | 2022.10.03 |