Add tasks for all the new languages
This commit is contained in:
parent
9dc3c2bb62
commit
bba7bfd280
13208 changed files with 134745 additions and 0 deletions
|
|
@ -0,0 +1,12 @@
|
|||
func bubbleSort<T:Comparable>(inout list:[T]) {
|
||||
var done = false
|
||||
while !done {
|
||||
done = true
|
||||
for i in 1..<list.count {
|
||||
if list[i - 1] > list[i] {
|
||||
(list[i], list[i - 1]) = (list[i - 1], list[i])
|
||||
done = false
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue