Skip to content

Commit 5e8c029

Browse files
committed
issue resolved kodecocodes#997 and kodecocodes#998
Correction of the README.markdown and Selection Sampling code improvement kodecocodes#998
1 parent e592ed6 commit 5e8c029

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Selection Sampling/README.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ func select<T>(from a: [T], count k: Int) -> [T] {
1212
for i in 0..<k {
1313
let r = random(min: i, max: a.count - 1)
1414
if i != r {
15-
swap(&a[i], &a[r])
15+
a.swapAt(i, r) // Corrected line in README
1616
}
1717
}
1818
return Array(a[0..<k])

Selection Sampling/SelectionSampling.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ func select<T>(from a: [T], count k: Int) -> [T] {
1717
for i in 0..<k {
1818
let r = random(min: i, max: a.count - 1)
1919
if i != r {
20-
swap(&a[i], &a[r])
20+
a.swapAt(i, r) // Corrected line
2121
}
2222
}
2323
return Array(a[0..<k])

0 commit comments

Comments
 (0)