Palindrome Number

As a Systems Engineer at Tata Consultancy Services, I deliver exceptional software products for mobile and web platforms, using agile methodologies and robust quality maintenance. I am experienced in performance testing, automation testing, API testing, and manual testing, with various tools and technologies such as Jmeter, Azure LoadTest, Selenium, Java, OOPS, Maven, TestNG, and Postman.
I have successfully developed and executed detailed test plans, test cases, and scripts for Android and web applications, ensuring high-quality standards and user satisfaction. I have also demonstrated my proficiency in manual REST API testing with Postman, as well as in end-to-end performance and automation testing using Jmeter and selenium with Java, TestNG and Maven. Additionally, I have utilized Azure DevOps for bug tracking and issue management.
Given an integer x, return true if x is a palindrome*, and false otherwise*.
LeetCode Problem - 9
class Solution {
// Method to check if a number is a palindrome
public boolean isPalindrome(int x) {
// Convert the integer to a string
String strX = Integer.toString(x);
// Get the length of the string
int len = strX.length();
// Initialize a variable to track the end index of the string
int end = len - 1;
// Iterate through the first half of the string
for(int i = 0; i < (len / 2); i++){
// If the characters at indices i and end are equal, move to the next pair
if (strX.charAt(i) == strX.charAt(end)){
end--;
continue;
}
// If the characters are not equal, return false
else {
return false;
}
}
// If all pairs are equal, return true
return true;
}
}




