Skip to content

Latest commit

 

History

History
 
 

Mindtickle

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Mindtickle Interview Questions


Coding round questions

-Rotten Tomatoes in a 2d matrix. (Hint : Use BFS)


Technical Interview Questions
Data Structures and Algorithms

-Shortest Path in a grid. (Hint : Use BFS) -Trapping Rain Water without two pointer approach. (Hint : Use stacks)


Low Level Design
  • Design Ludo game. (Must Have : Essential Class seperation, Good Method signature and Class wise roles) {SOLID Principle}
  • Design Chess game. Implement the logic for Knight movement. Track Old Moves for statergy pattern. {SOLID Principle}