You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Goal: Given an integer x, return true if x is a palindrome, and false otherwise.
Case 1:
Input: x = 121
Output: true
Explanation: 121 reads as 121 from left to right and from right to left.
Case 2:
Input: x = -121
Output: false
Explanation: From left to right, it reads -121. From right to left, it becomes 121-. Therefore it is not a palindrome.
Hi @yesiamrajeev, I’m looking forward to contributing to this repository during Hacktoberfest 2024. Could you assign me this issue and apply the Hacktoberfest label? Thanks
The text was updated successfully, but these errors were encountered:
Goal: Given an integer x, return
true
if x is a palindrome, andfalse
otherwise.Case 1:
Input: x = 121
Output:
true
Explanation: 121 reads as 121 from left to right and from right to left.
Case 2:
Input: x = -121
Output:
false
Explanation: From left to right, it reads -121. From right to left, it becomes 121-. Therefore it is not a palindrome.
Hi @yesiamrajeev, I’m looking forward to contributing to this repository during Hacktoberfest 2024. Could you assign me this issue and apply the Hacktoberfest label? Thanks
The text was updated successfully, but these errors were encountered: