Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
Banana = [0;0;0];
Apple = [71;5;64];
Orange = [0;0;0];
Mellon= [2;4;34];
T = table(Banana,Apple,Orange,Mellon);
T_correct =table(Apple,Mellon) ;
assert(isequal(myTable(T),T_correct))
|
2 | Fail |
Tulip = [0;43;38;40;49];
Lily = [71;0;64;67;64];
Amaryllis = [5;163;131;0;70];
Hyacinth= [0; 0 ; 0 ; 0 ; 0 ];
Crocus = [124; 0 ; 4 ; 3 ; 122 ];
T = table(Tulip,Lily,Amaryllis,Hyacinth,Crocus);
T_correct =table(Tulip,Lily,Amaryllis,Crocus) ;
assert(isequal(myTable(T),T_correct))
|
Count from 0 to N^M in base N.
220 Solvers
Project Euler: Problem 7, Nth prime
521 Solvers
Back to basics 8 - Matrix Diagonals
781 Solvers
171 Solvers
Check if number exists in vector
4465 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!