Day 16 Task:
4. Valid Palindrome: https://leetcode.com/problems/valid-palindrome/
Solutions:
class Solution:
def isPalindrome(self, s: str) -> bool:
ans = ""
for i in range(len(s)):
if(s[i].lower().isalnum()):
ans += s[i].lower()
return ans == ans[::-1]