1. Anagram Combination Counting Problem Given a list of words and sentences, determine how many unique sentences can be formed by replacing each word with any of its anagrams. Example: words = [‘listen’, ‘silent’, ‘it’, ‘is’] sentences = [‘listen it is silent’, ‘listen it is silent listen’] output = [4, 8] ⸻ 2. Implementing a File-System “find” Command Imagine implementing something like the Unix find command in a high-level language. Write code that can handle queries such as: • Find all files over 5 MB under a directory • Find all XML files under a directory • Advanced: files whose extension is Java OR all XML files with size between 5MB and 10MB ⸻ 3. Currency Conversion Problem Given a log of currency conversion rates (e.g., USD→EUR, EUR→GBP), write a function that converts between any two currencies. Example entries: {“from”:“USD”, “to”:“EUR”, “rate”:1.1} {“from”:“EUR”, “to”:“GBP”, “rate”:1.2} Meaning 1 USD = 1.32 GBP. 4: system design: book store review api
Engineer Ii Interview Questions
9,767 engineer ii interview questions shared by candidates
Numerous behavioral questions on leadership principles.
a variation of coin change was asked in all interviews
leetcode medium x3, design pastebin, changed problem description midway though question
Medium level DSA questions on trees
They asked standard leetcode questions (data structures and algorithms focused).
LLD of a pizza store
1. Tell me about a time when you had to meet a tight deadline 2. Tell me about a time when you had to do more than what you were required to do 3. Tell me about a time where you made a significant impact on a customer
1- Design Whatsapp 2- trapped water problem 3- next greater element in a circular array 4- Design an e-commerce website selling car parts. 5- amazon principles questions.
Tree Traversal related questions Current projects
Viewing 9341 - 9350 interview questions