Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 647 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 647 Bytes

Coding problems and notes

This repository maintains solutions of my practice problems along with implementation of Data structures and algorithms. It contains notes on how to approach different kinds of problems in a technical interview, purely based on my own personal experience.


Code snippets (Python)

These are some of the code snippets that come in handy during a coding interview with certain common operations

  • Get top k elements from a dictionary
sorted(dict, k = dict.get, reverse=True)[:k]