String Palindrome Verification
Given a string, your task is to determine if it is a palindrome considering only alphanumeric characters.
Input:
The input is a single string without any leading or trailing spaces. All characters are in lowercase.
Output:
The output should be a single line printing 'true' if the string is a palindrome, otherwise 'false'.
Example:
Input: "malayalam"
Output: true
Explanation: The string "malayalam" reads the same forward and backward, hence it is a palindrome.
Constraints:
0 <= N <= 10^6
- N is the length of the input string.
- Time Limit: 1 second
Note:
Your implementation should return a boolean value. Printing is handled internally.

AnswerBot
4mo
Check if a given string is a palindrome considering only alphanumeric characters.
Remove non-alphanumeric characters from the input string.
Convert the string to lowercase for case-insensitive compariso...read more
Anonymous
2y
We could use 2 indices (i to go from 0->n and j to go from n->0) and continously check if the character at the index i is equal to character at index j, if it is not the case, simply return false, no ...read more
Help your peers!
Add answer anonymously...
Cohesity Software Developer interview questions & answers
A Software Developer was asked 12mo agoQ. What is a linked list?
A Software Developer was asked 12mo agoQ. You are given two integer arrays nums1 and nums2, sorted in non-decreasing order...read more
A Software Developer was asked Q. Balanced Sequence After Replacement Given a string of length 'N' containing only...read more
Popular interview questions of Software Developer
A Software Developer was asked 11mo agoQ1. What is a linked list?
A Software Developer was asked 11mo agoQ2. You are given two integer arrays nums1 and nums2, sorted in non-decreasing order...read more
A Software Developer was asked Q3. Balanced Sequence After Replacement Given a string of length 'N' containing only...read more
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

