Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
n = 1;
y_correct = 1;
assert(isequal(wheat_chess(n),y_correct))
|
2 | Pass |
%%
n = 0;
y_correct = 0;
assert(isequal(wheat_chess(n),y_correct))
|
3 | Pass |
%%
n = -1;
y_correct = 'NaN';
assert(isequal(wheat_chess(n),y_correct))
|
4 | Pass |
%%
n = 4;
y_correct = 65535;
assert(isequal(wheat_chess(n),y_correct))
|
5 | Pass |
%%
n = 8;
y_correct = 18446744073709551615;
assert(isequal(wheat_chess(n),y_correct))
|
6 | Pass |
%%
n = 10;
y_correct = 1267650600228229401496703205375;
assert(isequal(wheat_chess(n),y_correct))
|
Make the vector [1 2 3 4 5 6 7 8 9 10]
35545 Solvers
Back to basics 20 - singleton dimensions
254 Solvers
Find the maximum number of decimal places in a set of numbers
734 Solvers
Replace multiples of 5 with NaN
358 Solvers
The sum of the numbers in the vector
426 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!