GoLang Solution For UVa Online Judge: 10139 - Factovisors
GO Solution For UVa 10139 - Factovisors. In this post we will see how we can solve this challenge in GoLang for UVa Online Judge.
Problem Description
The factorial function, n! is defined thus for n a non-negative integer:
0! = 1
n! = n× (n− 1)! (n > 0)
We say that a divides b if there exists an integer k such that
k × a = b
Input The input to your program consists of several lines, each containing two non-negative integers, n and m, both le
...You can find the full details of the problem Factovisors at UVa Online Judge
Sample Input
6 9 6 27 20 10000 20 100000 1000 1009
Sample Output
9 divides 6! 27 does not divide 6! 10000 divides 20! 100000 does not divide 20! 1009 does not divide 1000!
Solution: Please check the main.go snippet for the solution.
Solution originally posted at: Github by @codingsince1985
Comments
Leave a comment
You are not LoggedIn but you can comment as an anonymous user which requires manual approval. For better experience please Login.