Last active
September 11, 2017 09:50
-
-
Save mytholog/6299656c158bd7ecc1d9bd3e94603561 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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