Skip to content

Instantly share code, notes, and snippets.

@akhenakh
Created November 9, 2014 18:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akhenakh/b4dc74cbf9c576d3f6fd to your computer and use it in GitHub Desktop.
Save akhenakh/b4dc74cbf9c576d3f6fd to your computer and use it in GitHub Desktop.
reverse a slice in Go
for i, j := 0, len(res)-1; i < j; i, j = i+1, j-1 {
res[i], res[j] = res[j], res[i]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment