Skip to content

Instantly share code, notes, and snippets.

@smathy
Created March 15, 2016 22:56
Show Gist options
  • Save smathy/7ad2490791ef7787111e to your computer and use it in GitHub Desktop.
Save smathy/7ad2490791ef7787111e to your computer and use it in GitHub Desktop.
def roughly x, m=1000
x = x.to_i
base = x / m * m
case x % m
when 1..700
"over #{base}"
when 701..999
"almost #{base + m}"
else
x
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment