Skip to content

Latest commit

 

History

History
58 lines (48 loc) · 3.07 KB

README.md

File metadata and controls

58 lines (48 loc) · 3.07 KB
  • This is a curated list or a consolidated version of all the links and things I found useful on the web
  • Most of my sources include hundreds of posts from reddit and medium, so really couldnt keep track of sources
  • Use what you feel like is useful, otherwise drop it.
  • feel free to contribute
  • leave star if it helped?

Do the blind 75 list no matter what happens!

  • it is a list of 75 questions which are most likely to appear in an interview and almost all other questions branch out from it. It also covers most of the important topics in DSA.
  • So while solving the list activley learn each concept related to it, apply it to the code and move on
  • Make sure to revist the question once in a while to get refresh your memory of it
  • Spend a lot of time understanding the question and then spend some more time understanding why the solution fits the question.

Python isn't good enough?

Stuff for interview prep From the Author of blind 75 himself:

Stuff for interview prep From a really good yt channel: Neetcode

Website can keep track of progress, has video+text solutions/explanations and even a roadmap!

Interested in ML/DL?

Please try out the fastai course by jeremy howard. Haven't found anything better to push you down the ML rabbit hole.

https://course.fast.ai/

Wanna make a neat website with python as the brains?

  • Learn how to use flask
  • Learn css and html to build the pages
  • If css is a pain switch over to bootstrap with just the basics of css in hand, this might get difficult but with enough googling you can pull through
  • Learn how to use python logic on the inputs you get from a page and give an output back
  • I did this for a python project, it might help https://github.com/fadh1l/Titanic-survivor-predictor
  • To use ML models in flask the key concept is pickling, google it and you'll figure out

Videos from colin Galen

  • He is a cp programmer who has a pretty good global ranking

What are monotonic stacks and where to use them?