There were 4 questions to be completed in 75 minutes.
- https://leetcode.com/discuss/interview-question/989768/amazon-oa-2020-transaction-logs
- https://leetcode.com/problems/maximal-square/
- https://leetcode.com/problems/minimum-add-to-make-parentheses-valid/
- String Reduction : Given a string , reduce string such that all of its substrings are distinct.
Eg : s = "abab" substr = { a , b , ab , ba , aba , bab , abab }.
output : Delete one 'a' and one 'b' - > return 2
I was able to solve all 4 of them.