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 |
assert(numCmp('12.3456',12.3456))
tf =
logical
1
|
2 | Fail |
assert(numCmp('12.3456',12.3456789))
tf =
logical
0
|
3 | Pass |
assert(~numCmp('12.3456',12.345))
tf =
logical
0
|
4 | Pass |
assert(~numCmp('12.34567890',12.3456))
tf =
logical
0
|
5 | Fail |
assert(numCmp('12e6',12e6))
tf =
logical
0
|
6 | Pass |
assert(~numCmp('54',100))
tf =
logical
0
|