Created
January 5, 2021 14:24
-
-
Save akio0911/91615c95f2b1dcc75d59182b2febbfd5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func 新たなベストスコアを作る(現在のベストスコア: [Int], 今回のスコア: Int) -> [Int] { | |
let 重複なしのベストスコア = Array(Set(現在のベストスコア + [今回のスコア])) | |
return Array( | |
(重複なしのベストスコア + [0, 0]) | |
.sorted(by: >) | |
.prefix(3) | |
) | |
} | |
新たなベストスコアを作る(現在のベストスコア: [], 今回のスコア: 999) | |
新たなベストスコアを作る(現在のベストスコア: [500], 今回のスコア: 999) | |
新たなベストスコアを作る(現在のベストスコア: [300, 200, 200], 今回のスコア: 200) | |
新たなベストスコアを作る(現在のベストスコア: [100, 200, 300], 今回のスコア: 400) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment