Skip to content

Instantly share code, notes, and snippets.

@mytholog
Last active September 11, 2017 09:50
Show Gist options
  • Save mytholog/6299656c158bd7ecc1d9bd3e94603561 to your computer and use it in GitHub Desktop.
Save mytholog/6299656c158bd7ecc1d9bd3e94603561 to your computer and use it in GitHub Desktop.
tmp := 0
for i := 0; i < len(arr); i++ {
for j := 0; j < len(arr) - 1; j++ {
if arr[j] > arr[j + 1] {
tmp = arr[j]
arr[j] = arr[j + 1]
arr[j + 1] = tmp
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment