We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a5e031 commit 6bf3a16Copy full SHA for 6bf3a16
Combinatorics/README.markdown
@@ -99,17 +99,17 @@ Here's a recursive algorithm by Niklaus Wirth:
99
100
```swift
101
func permuteWirth<T>(_ a: [T], _ n: Int) {
102
- if n == 0 {
103
- print(a) // display the current permutation
104
- } else {
105
- var a = a
106
- permuteWirth(a, n - 1)
107
- for i in 0..<n {
108
- swap(&a[i], &a[n])
109
110
+ if n == 0 {
+ print(a) // display the current permutation
+ } else {
+ var a = a
+ permuteWirth(a, n - 1)
+ for i in 0..<n {
+ a.swapAt(i, n)
111
+ }
112
}
- }
113
114
```
115
0 commit comments