Low Level Design
Last updated
Was this helpful?
Last updated
Was this helpful?
All LLD Questions were supposed to be written in a clean, modular, and extensible manner, with proper test cases, log messages and exception handling. Concurrency handling depends from question to question. There was no restriction on the choice of language in any company.
Code a rate-limiting algorithm. The approach I proposed was similar to the leaky bucket algorithm or token bucket algorithm provided by the Guava Library.
In Memory Kafka
Build a coffee maker machine, which has multiple ingredients and a set of beverages, which can be prepared by using these ingredients. The preparation of a beverage should be done as a transaction, with rollbacks, if a certain ingredient is not available while preparing a beverage. Ingredients can be added, and beverages can be prepared, etc. in a concurrent fashion.
I am putting the questions which I can remember.
Given a directed graph, a starting point, and an ending point, find critical points from all the random walks. A critical point is one where the same node is visited twice.
Given a grid where points are either connected in an either horizontal or vertical manner, tell the total number of squares possible. These squares can be of multiple sizes and can be overlapping.
Given a grid where there are walls in certain blocks. There are k people with their positions and a block for the meeting point. What is the overall minimum distance required to travel by all the people to reach the meeting point? What is the optimal meeting point, so that sum of distance traveled is minimum?