Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 10;
y_correct = [1 2 3 4 5 6 7 8 9 10];
assert(isequal(first_n_natural_nos(n),y_correct))
ans =
1 2 3 4 5 6 7 8 9 10
|
2 | Pass |
n = 4;
y_correct = [1 2 3 4];
assert(isequal(first_n_natural_nos(n),y_correct))
ans =
1 2 3 4
|
6723 Solvers
Return unique values without sorting
588 Solvers
484 Solvers
241 Solvers
461 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!