Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 1;
ct_correct = 0;
assert(isequal(powerTenInFactorial(n),ct_correct))
|
2 | Pass |
n = 9;
ct_correct = 1;
assert(isequal(powerTenInFactorial(n),ct_correct))
|
3 | Pass |
n = 27;
ct_correct = 6;
assert(isequal(powerTenInFactorial(n),ct_correct))
|
4 | Pass |
n = 626;
ct_correct = 156;
assert(isequal(powerTenInFactorial(n),ct_correct))
|
5 | Pass |
n = 620;
ct_correct = 152;
assert(isequal(powerTenInFactorial(n),ct_correct))
|
261 Solvers
Reverse the Words (not letters) of a String
297 Solvers
Who is the smartest MATLAB programmer?
561 Solvers
There are 10 types of people in the world
310 Solvers
Number of Even Elements in Fibonacci Sequence
665 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!