This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 4;
y_correct = [ 1 4 9 16 ];
assert(isequal(squares(x),y_correct))
n =
1 2 3 4
|
2 | Pass |
%%
x = 1;
y_correct = [ 1 ];
assert(isequal(squares(x),y_correct))
n =
1
|
3 | Pass |
%%
x = 10;
y_correct = [ 1 4 9 16 25 36 49 64 81 100 ];
assert(isequal(squares(x),y_correct))
n =
1 2 3 4 5 6 7 8 9 10
|
Read a column of numbers and interpolate missing data
800 Solvers
It dseon't mettar waht oedrr the lrettes in a wrod are.
494 Solvers
Project Euler: Problem 9, Pythagorean numbers
157 Solvers
190 Solvers
07 - Common functions and indexing 2
255 Solvers