Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 'I have been using MATLAB for 50 years!';
y_correct = 'Me!';
assert(isequal(smartest(x),y_correct))
|
2 | Pass |
x = 'I developed MATLAB!';
y_correct = 'Me!';
assert(isequal(smartest(x),y_correct))
|
3 | Pass |
x = '';
y_correct = 'Me!';
assert(isequal(smartest(x),y_correct))
|
4 | Pass |
x = 1;
y_correct = 'Me!';
assert(isequal(smartest(x),y_correct))
|
Get the area codes from a list of phone numbers
417 Solvers
Count from 0 to N^M in base N.
200 Solvers
Project Euler: Problem 6, Natural numbers, squares and sums.
782 Solvers
Flip the main diagonal of a matrix
426 Solvers
Vectorize the digits of an Integer
236 Solvers