[OA] Microsoft 2020
Anonymous User
3046

Three questions in total, I tried searching the final two on LC but didn't find them

  • https://leetcode.com/problems/find-n-unique-integers-sum-up-to-zero/

  • Count visible nodes in binary tree -> there are many questions like this on google

  • Finding the lengths of the array -> an array represents a linked list where index 0 represents the head. Example [1,4,-1,3,2], result will be 4 where:
    - Head has value of 1
    - 1 has value of 4
    - 4 has value of 2
    - 2 has value of -1 which ends the LL

Comments (6)