Day 27 of LeetCode Challenge
Problem 1: Palindrome Number
Link to the problem: https://leetcode.com/problems/palindrome-number/
class Solution {
public boolean isPalindrome(int x) {
StringBuilder sb = new StringBuilder(Integer.toString(x));
System.out.printl...
tusharpant.hashnode.dev2 min read