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 |
M = 2;
N = 2;
y_correct = [0 0 1 1; 0 1 0 1];
assert(isequal(countInBaseN(M,N),y_correct))
|
2 | Pass |
M = 2;
N = 3;
y_correct = [ 0 0 0 1 1 1 2 2 2; 0 1 2 0 1 2 0 1 2];
assert(isequal(countInBaseN(M,N),y_correct))
|
3 | Pass |
M = 3;
N = 4;
y_correct = [ 0 0 0
0 0 1
0 0 2
0 0 3
0 1 0
0 1 1
0 1 2
0 1 3
0 2 0
0 2 1
0 2 2
0 2 3
0 3 0
0 3 1
0 3 2
0 3 3
1 0 0
1 0 1
1 0 2
1 0 3
1 1 0
1 1 1
1 1 2
1 1 3
1 2 0
1 2 1
1 2 2
1 2 3
1 3 0
1 3 1
1 3 2
1 3 3
2 0 0
2 0 1
2 0 2
2 0 3
2 1 0
2 1 1
2 1 2
2 1 3
2 2 0
2 2 1
2 2 2
2 2 3
2 3 0
2 3 1
2 3 2
2 3 3
3 0 0
3 0 1
3 0 2
3 0 3
3 1 0
3 1 1
3 1 2
3 1 3
3 2 0
3 2 1
3 2 2
3 2 3
3 3 0
3 3 1
3 3 2
3 3 3];
assert(isequal(countInBaseN(M,N),y_correct'))
|
235 Solvers
756 Solvers
Calculate the area of a triangle between three points
877 Solvers
Test if two numbers have the same digits
187 Solvers
Output any real number that is neither positive nor negative
316 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!