Interview 1 Coding Question ( Medium based on LeetCode ): • It was based on https://leetcode.com/problems/number-of-islands/. It has a minor alteration which was to return the area of the smallest island. Basically, recursively iterate over the array, keep track of smallest visited island. Interview 2 Coding Question ( Medium based on LeetCode ): • This was https://leetcode.com/problems/permutations/ the question.