Check if a number is Palindrome or Not

Problem Statement:  Given a number check if it is a palindrome.

An integer is considered a palindrome when it reads the same backward as forward.

Examples:

Example 1:
Input: N = 123
Output: Not Palindrome Number
Explanation: 123 read backwards is 321.Since these are two different numbers 123 is not a palindrome.

Example 2:
Input: N =  121 
Output: Palindrome Number
Explanation: 121 read backwards as 121.Since these are two same numbers 121 is a palindrome.

Solution

Approach: हम original number को reverse और original number को reverse number के साथ compare कर सकते है यदि दोनों Same होता है तो Number Palindrome होगा

 

 

 

LEAVE A REPLY

Please enter your comment!
Please enter your name here