You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#997
I have created this PR for that issue, there are some mistakes in the README files and also a little improvement for the Selection Sampling example function.
More Details
swap(&a[i], &a[r]) can be written like a.swapAt(i, r)
That would be remove the error called "Overlapping accesses to 'a', but modification requires exclusive access; consider calling MutableCollection.swapAt(::)"
The text was updated successfully, but these errors were encountered:
Mrgig7
added a commit
to Mrgig7/swift-algorithm-club-study
that referenced
this issue
Oct 7, 2024
Brief Intro
#997
I have created this PR for that issue, there are some mistakes in the README files and also a little improvement for the Selection Sampling example function.
More Details
swap(&a[i], &a[r]) can be written like a.swapAt(i, r)
That would be remove the error called "Overlapping accesses to 'a', but modification requires exclusive access; consider calling MutableCollection.swapAt(::)"
The text was updated successfully, but these errors were encountered: