elizabethsiegle/30-seconds-of-swift-codeA Swift implementation of 30-seconds-of-code: A curated collegithub.com
そのままのコードです。 func bubbleSort(_ inputArr:[Int]) -> [Int] {
guard inputArr.count > 1 else {
return inputArr
}
var res = inputArr
let count = res.cou…