This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a = 124;
b = 545;
assert(isequal(find_palindrome(a),b))
b =
124
a =
545
b =
545
|
2 | Pass |
%%
a = 150;
b = 303;
assert(isequal(find_palindrome(a),b))
b =
150
a =
201
b =
201
a =
303
b =
303
|
3 | Pass |
%%
a = 291;
b = 6996;
assert(isequal(find_palindrome(a),b))
b =
291
a =
483
b =
483
a =
867
b =
867
a =
1635
b =
1635
a =
6996
b =
6996
|
4 | Pass |
%%
a = 178;
b = 15851;
assert(isequal(find_palindrome(a),b))
b =
178
a =
1049
b =
1049
a =
10450
b =
10450
a =
15851
b =
15851
|
Find the two most distant points
1629 Solvers
Given two strings, find the maximum overlap
461 Solvers
725 Solvers
Try 1.5.4: Celsius to Fahrenheit
609 Solvers
274 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!