Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
lowVal = 10;
highVal = 50;
p = [11 13
17 19
29 31
41 43];
assert(isequal(window_twins(lowVal,highVal),p))
|
2 | Pass |
%%
lowVal = 1000;
highVal = 1050;
p = [1019 1021
1031 1033];
assert(isequal(window_twins(lowVal,highVal),p))
|
3 | Pass |
%%
lowVal = 3120;
highVal = 3300;
p = [ 3167 3169
3251 3253
3257 3259];
assert(isequal(window_twins(lowVal,highVal),p))
|
1901 Solvers
276 Solvers
120 Solvers
641 Solvers
414 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!