Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [1 1 2 3 0 -9 -90 1 5 -7 6 3 2 -2 -99];
y_correct = [1 1 2 3 0.1 0.1 0.1 1 5 0.1 6 3 2 0.1 0.1];
assert(isequal(repL0W01(x),y_correct))
ans =
Columns 1 through 9
1.0000 1.0000 2.0000 3.0000 0.1000 0.1000 0.1000 1.0000 5.0000
Columns 10 through 15
0.1000 6.0000 3.0000 2.0000 0.1000 0.1000
|
2 | Pass |
%%
x = [1 1 2 3 0 -0.1 -1 -0.001 50 -80];
y_correct = [1 1 2 3 0.1 0.1 0.1 0.1 50 0.1];
assert(isequal(repL0W01(x),y_correct))
ans =
Columns 1 through 9
1.0000 1.0000 2.0000 3.0000 0.1000 0.1000 0.1000 0.1000 50.0000
Column 10
0.1000
|
3 | Pass |
%%
x = [1 1 2 3 0 -9 -90 1 5 -7 6 3 2 -2 -99];
y_correct = [1 1 2 3 0.1 0.1 0.1 1 5 0.1 6 3 2 0.1 0.1];
assert(isequal(repL0W01(x),y_correct))
ans =
Columns 1 through 9
1.0000 1.0000 2.0000 3.0000 0.1000 0.1000 0.1000 1.0000 5.0000
Columns 10 through 15
0.1000 6.0000 3.0000 2.0000 0.1000 0.1000
|
Increment a number, given its digits
505 Solvers
337 Solvers
Back to basics 9 - Indexed References
348 Solvers
579 Solvers
Is this triangle right-angled?
1918 Solvers