-
Notifications
You must be signed in to change notification settings - Fork 139
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
Factorial Trailing Zeroes #223
Comments
@syedareehaquasar @KhushbooGoel01 please assign me this issue |
Hii @KhushbooGoel01 can you please assign this issue |
go ahead @santushtisharma10 ! |
I will do the cpp solution |
Hey, I would like to Python solution.Can you please assign ? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Problem : Given an integer n, return the number of trailing zeroes in
n!
.Note that
n! = n * (n - 1) * (n - 2) * ... * 3 * 2 * 1
.The text was updated successfully, but these errors were encountered: