Recursion is great
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = 124;
b = 545;
assert(isequal(find_palindrome(a),b))
|
2 | Pass |
a = 150;
b = 303;
assert(isequal(find_palindrome(a),b))
|
3 | Pass |
a = 291;
b = 6996;
assert(isequal(find_palindrome(a),b))
|
4 | Pass |
a = 178;
b = 15851;
assert(isequal(find_palindrome(a),b))
|
5171 Solvers
Extract leading non-zero digit
967 Solvers
Reverse the Words (not letters) of a String
244 Solvers
Arrange vector in ascending order
541 Solvers
Create a Multiplication table matrix...
226 Solvers