This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a = 124;
b = 545;
assert(isequal(find_palindrome(a),b))
ans =
124
|
2 | Pass |
%%
a = 150;
b = 303;
assert(isequal(find_palindrome(a),b))
ans =
150
|
3 | Pass |
%%
a = 291;
b = 6996;
assert(isequal(find_palindrome(a),b))
ans =
291
|
4 | Pass |
%%
a = 178;
b = 15851;
assert(isequal(find_palindrome(a),b))
ans =
178
|
Least common multiple of many numbers
159 Solvers
221 Solvers
135 Solvers
151 Solvers
263 Solvers