Skip to content

Commit 0c14af1

Browse files
Changed _all_ tabs to spaces
1 parent bb6b4cd commit 0c14af1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contents/bogo_sort/code/go/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ func shuffle(a *[]int) {
1212
for i := len(*a) - 1; i > 0; i-- {
1313
j := rand.Intn(i + 1)
1414
(*a)[i], (*a)[j] = (*a)[j], (*a)[i]
15-
}
15+
}
1616
}
1717

1818
func isSorted(a []int) bool {

0 commit comments

Comments
 (0)