This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
This solution is outdated. To rescore this solution, sign in.
lol
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 2;
y_correct = [1 2; 2 4];
assert(isequal(timestables(x),y_correct))
m =
1 1
1 1
m =
1 2
1 1
m =
1 2
2 4
|
2 | Fail |
%%
x = 3;
y_correct = [1 2 3; 3 6 9];
assert(isequal(timestables(x),y_correct))
m =
1 1 1
1 1 1
1 1 1
m =
1 2 3
1 1 1
1 1 1
m =
1 2 3
2 4 6
1 1 1
m =
1 2 3
2 4 6
3 6 9
|
3 | Pass |
%%
x = 5;
y_correct = [1 2 3 4 5; 2 4 6 8 10; 3 6 9 12 15; 4 8 12 16 20; 5 10 15 20 25];
assert(isequal(timestables(x),y_correct))
m =
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
m =
1 2 3 4 5
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
m =
1 2 3 4 5
2 4 6 8 10
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
m =
1 2 3 4 5
2 4 6 8 10
3 6 9 12 15
1 1 1 1 1
1 1 1 1 1
m =
1 2 3 4 5
2 4 6 8 10
3 6 9 12 15
4 8 12 16 20
1 1 1 1 1
m =
1 2 3 4 5
2 4 6 8 10
3 6 9 12 15
4 8 12 16 20
5 10 15 20 25
|