Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
v = 0;
H = [0 0 0];
assert(isequal(man(v),H))
a =
0
H =
0 0 0
|
2 | Pass |
v = [1 4];
H = [1 1 1;4 16 64];
assert(isequal(man(v),H))
a =
1
4
H =
1 1 1
4 16 64
|
3 | Pass |
v = [1 2 3];
H = [ 1 1 1;2 4 8; 3 9 27];
assert(isequal(man(v),H))
a =
1
2
3
H =
1 1 1
2 4 8
3 9 27
|
4 | Pass |
v =[2 7 5 1 6 5 1 1 7 9 8 3 8 2 8 4 1 9];
H = [2 4 8;7 49 343;5 25 125;1 1 1;6 36 216;5 25 125;1 1 1;1 1 1;7 49 343;9 81 729;8 64 512;3 9 27;8 64 512;2 4 8;8 64 512;4 16 64;1 1 1;9 81 729];
assert(isequal(man(v),H))
a =
2
7
5
1
6
5
1
1
7
9
8
3
8
2
8
4
1
9
H =
2 4 8
7 49 343
5 25 125
1 1 1
6 36 216
5 25 125
1 1 1
1 1 1
7 49 343
9 81 729
8 64 512
3 9 27
8 64 512
2 4 8
8 64 512
4 16 64
1 1 1
9 81 729
|
Return unique values without sorting
588 Solvers
Implement simple rotation cypher
943 Solvers
Output any real number that is neither positive nor negative
316 Solvers
2314 Solvers
Find out sum of all elements of given Matrix
349 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!