Asked these 2 questions.
https://leetcode.com/problems/valid-palindrome/
Follow up 1: if a specific charset needs to be matched (a,e,z) and exclude anything else. How would you do it? (Use a hashset for charset to be matched).
Follow up 2: if a string is infinitely large and you cannot load it all in RAM and can only access blocks of string which will contain some k contiguous chars. (Access 1st and last block and keep checking)
How to answer the 2 follow-up questions for Q-1?