-
Notifications
You must be signed in to change notification settings - Fork 305
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Entry Challenge C1 #1
Comments
def reverse_integer(n): Input from the usernumber = int(input("Enter an integer: ")) |
def reverse_integer(n):
Test casesprint(reverse_integer(500)) # Should print 5 |
STOP WRITING YOUR SOLUTIONS IN THE ISSUES KINDLY.Create a Fork; Work on the challenge; Then create a PR (Pull Request) with your solution(s).
Thank you. cc: @Angote433 , @daviewisdm , @Ocheezy-glitch |
def reverse_integer(n): print(reverse_integer(500)) |
Entry Challenge C1
Reverse Integer
Write a program that takes an integer as input and
return
an integer withreversed
digitordering.
For example
The text was updated successfully, but these errors were encountered: