Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
n = 1;
Title_correct = 'Times 2 - START HERE';
assert(strcmp(Cody_Title(n),Title_correct))
|
2 | Pass |
%%
n = 2;
Title_correct = 'Make the vector [1 2 3 4 5 6 7 8 9 10]';
assert(strcmp(Cody_Title(n),Title_correct))
|
3 | Pass |
%%
n = 110;
Title_correct = 'Make an N-dimensional Multiplication Table';
% This problem hurts my head
assert(strcmp(Cody_Title(n),Title_correct))
|
4 | Pass |
%%
n = 808;
Title_correct = 'Hamming Weight - Fast';
assert(strcmp(Cody_Title(n),Title_correct))
|
Remove any row in which a NaN appears
6827 Solvers
Project Euler: Problem 1, Multiples of 3 and 5
1493 Solvers
Project Euler: Problem 10, Sum of Primes
707 Solvers
351 Solvers
405 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!