Skip to content

Instantly share code, notes, and snippets.

@d3vw
Created August 1, 2023 08:52
Show Gist options
  • Select an option

  • Save d3vw/ff6fac3d693c288ce5ed05d0816c728d to your computer and use it in GitHub Desktop.

Select an option

Save d3vw/ff6fac3d693c288ce5ed05d0816c728d to your computer and use it in GitHub Desktop.
func bb_sort(arr []int) []int {
for i:=range arr {
for j:=len(arr)-1);j>i;j-- {
if arr[j-1]>arr[j] {
arr[j], arr[j-1] = arr[j-1], arr[i]
}
}
}
return arr
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment