This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
[C,E] = scientific_notation(1);
assert(abs(C-1)<10^(-10) & isequal(E,0))
|
2 | Pass |
%%
[C,E] = scientific_notation(100);
assert(abs(C-1)<10^(-10) & isequal(E,2))
|
3 | Pass |
%%
[C,E] = scientific_notation(.0055);
assert(abs(C-5.5)<10^(-10) & isequal(E,-3))
|
4 | Pass |
%%
[C,E] = scientific_notation(3^20);
assert(abs(C-3.486784401)<10^(-10) & isequal(E,9))
|
Check to see if a Sudoku Puzzle is Solved
232 Solvers
328 Solvers
202 Solvers
94 Solvers
48 Solvers