+ 28
[ ASSIGNMENT: ] Next Palindromic Number
TASK: You will be given a positive integer, num. Create the function nextPal( ) that will output the smallest palindrome number higher than num. Input >> Output Examples:: nextPal(11) --> return 22 nextPal(188) --> return 191 nextPal(191) --> return 202 nextPal(2541) --> return 2552 NOTE: You will be receiving values higher than 10, all valid! HappyCodings!:) https://code.sololearn.com/WklnpoXLWJFH/?ref=app
12 Réponses
+ 26
https://code.sololearn.com/W2l66v18NiaZ/?ref=app
+ 23
By the way, congratulations Danijel Ivanović for your featured assignement "Prime string" !👍👍👏👏
https://code.sololearn.com/c53YDA8arysZ/?ref=app
https://code.sololearn.com/csTtZmIzg8JH/?ref=app
https://code.sololearn.com/cAf9X0Uc0DZK/?ref=app
https://code.sololearn.com/cKp826ioD4O1/?ref=app
+ 19
Brent Meeusen
These are the Assignments I have Submitted to the Lesson Factory!! 😀👍😃😉
// I've done it for months! 😄😊😆
+ 18
Danijel Ivanović you're welcome it's my pleasure ! 😉😄😃😆👍✌
+ 14
Here's mine in C++
https://code.sololearn.com/cdE3v0B61Rox/?ref=app
+ 12
Uni 😄😀👍😃😆
Thank you very much for support 👍😊
&&
taking part!! 😎👌😉
+ 6
Check out my Kotlin way :-
https://code.sololearn.com/ccfPL0Q6xerw/?ref=app
+ 6
https://code.sololearn.com/co3qvEL1fZuS/?ref=app
+ 3
python code, nice assignment!!
https://code.sololearn.com/cnDRmc4a98Ix/?ref=app
+ 3
This is my Pythonic version :-
https://code.sololearn.com/cqTU3mmkw5oB/?ref=app