Skip to content

Instantly share code, notes, and snippets.

@fiorix
Created December 4, 2015 19:20
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 fiorix/e9849357f565ca092ee8 to your computer and use it in GitHub Desktop.
Save fiorix/e9849357f565ca092ee8 to your computer and use it in GitHub Desktop.
func RoundUp(v int) int {
return 10 * ((v + 9) / 10)
}
func RoundDown(v int) int {
return 10 * (v / 10)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment