Problem 1749. Factorial !
Solution Stats
Problem Comments
-
4 Comments
I dont understand what you wanted to do with your test no.4. why dont you just check our answer against the actual factorial, instead of hard coding (truncated) numbers?
testcase is nok:
6.6895e+198==factorial(120)
ans =
0
Use if statement for test 4...
Faulty test case has been corrected. Those who have solved with respect to the rounded test case kindly solve the question again. It's a fairly simple one!
Solution Comments
-
1 Comment
fail for x=120?! 'isequal(factorial(120),y)' gives me 0...
-
1 Comment
My solution works in Matlab, but fails the last test here.. :(
-
1 Comment
I am trying to solve this problem and first 2 test cases are passed, but assertion is failing for last test case. I also used the format as 'short eng', here the y_correct is read by Matlab as '6.689500000000000e+198', but my program is calculating answer as '6.689502913449124e+198' for x = 120 and thats why its failing. Any suggestions ?
-
1 Comment
There is something wrong with the last test; The number are truncated. y_correct should be 6.689502913449135e+198; while in the test it is given as 6.689500000000000e+198
-
1 Comment
fake solution, it works until there is a mistake in test 4
-
1 Comment
I KNOW THIS SOLUTION IS CORRECT....STUPID IDE IS NOT ACCEPTING IT....YOU CAN RUN IT ON A STANDALONE MATLAB AND SEE IF IT WORKS!
-
1 Comment
Nice solution for that rounding problem.
-
1 Comment
There should be a test in the test suite to catch any uses of "factorial" in the submitted code, as is done here:
http://www.mathworks.com/matlabcentral/cody/problems/498-find-the-kronecker-tensor-product-without-using-kron
Also, is the convention here to round to five significant digits? If so, this should probably be noted in the problem statement.
Problem Recent Solvers114
Suggested Problems
-
2011 Solvers
-
Omit columns averages from a matrix
563 Solvers
-
Back to basics 3 - Temp Directory
358 Solvers
-
292 Solvers
-
205 Solvers
More from this Author1
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!