Skip to content

Instantly share code, notes, and snippets.

@pmashchak
Last active August 29, 2015 13:59
Show Gist options
  • Save pmashchak/10519170 to your computer and use it in GitHub Desktop.
Save pmashchak/10519170 to your computer and use it in GitHub Desktop.
# reverse decimal int number
# without converting to string
def reverse_decimal num
while num > 0 do
# condition
last = num % 10
# algorithm body
res ||= 0
res = (res *= 10) + last
# decrement
num /= 10
end
res
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment