Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
y = your_fcn_name(100,100);
assert( y(1) == -100 && y(end) == 100 && mean(diff(y))== 2 && std(diff(y)) == 0 );
|
2 | Pass |
%%
y = your_fcn_name(200,100);
assert( y(1) == -100 && y(end) == 100 && mean(diff(y))== 1 && std(diff(y)) == 0 );
|
3 | Pass |
%%
y = your_fcn_name(2,100);
assert( y(1) == -100 && y(end) == 100 && mean(diff(y))== 100 && std(diff(y)) == 0 );
|
Find state names that end with the letter A
708 Solvers
The Goldbach Conjecture, Part 2
1284 Solvers
Given two strings, find the maximum overlap
461 Solvers
329 Solvers
246 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!