Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n_min = 60;
n_max = 1000;
y_correct = [151,157,251,257,353];
assert(isequal(five_primes(n_min,n_max),y_correct))
y =
151 157 251 257 353
|
2 | Pass |
n_min = 60;
n_max = 300;
y_correct = -1;
assert(isequal(five_primes(n_min,n_max),y_correct))
y =
-1
|
3 | Pass |
n_min = 1;
n_max = 200;
y_correct = [5,53,59,151,157];
assert(isequal(five_primes(n_min,n_max),y_correct))
y =
5 53 59 151 157
|
4 | Pass |
n_min = 1;
n_max = 100;
y_correct = -1;
assert(isequal(five_primes(n_min,n_max),y_correct))
y =
-1
|
5 | Pass |
n_min = 500;
n_max = 600;
y_correct = [503,509,521,523,541];
assert(isequal(five_primes(n_min,n_max),y_correct))
y =
503 509 521 523 541
|
6 | Pass |
n_min = 500;
n_max = 555;
y_correct = [503,509,521,523,541];
assert(isequal(five_primes(n_min,n_max),y_correct))
y =
503 509 521 523 541
|
7 | Pass |
n_min = 500;
n_max = 500000000;
y_correct = [503,509,521,523,541];
assert(isequal(five_primes(n_min,n_max),y_correct))
y =
503 509 521 523 541
|
8 | Pass |
n_min = 5000;
n_max = 5020;
y_correct = -1;
assert(isequal(five_primes(n_min,n_max),y_correct))
y =
-1
|
9 | Pass |
n_min = 5000;
n_max = 5200;
y_correct = [5003,5009,5011,5021,5023];
assert(isequal(five_primes(n_min,n_max),y_correct))
y =
5003 5009 5011 5021 5023
|
10 | Pass |
n_min = 5000;
n_max = 55555555;
y_correct = [5003,5009,5011,5021,5023];
assert(isequal(five_primes(n_min,n_max),y_correct))
y =
5003 5009 5011 5021 5023
|
11 | Pass |
n_min = 55555;
n_max = 56789;
y_correct = [55579,55589,55603,55609,55619];
assert(isequal(five_primes(n_min,n_max),y_correct))
y =
55579 55589 55603 55609 55619
|
12 | Pass |
n_min = 987654321;
n_max = 988777666;
y_correct = [987654323,987654337,987654347,987654359,987654361];
assert(isequal(five_primes(n_min,n_max),y_correct))
y =
987654323 987654337 987654347 987654359 987654361
|
Vectorize the digits of an Integer
269 Solvers
Fix the last element of a cell array
344 Solvers
249 Solvers
2778 Solvers
Van Eck's Sequence's nth member
291 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!