Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 607 Bytes

readme.md

File metadata and controls

21 lines (17 loc) · 607 Bytes

Solving Programming Problems

Resources

  1. https://www.udemy.com/course/master-the-coding-interview-big-tech-faang-interviews/
  2. https://codeforces.com/
  3. https://www.interviewcake.com/
  4. https://interviewing.io/
  5. https://leetcode.com/
  6. https://www.youtube.com/channel/UCcH4Ga14Y4ELFKrEYM1vXCg/playlists

Steps to work through problems

  1. Verify constraints
  2. Write out some test cases
  3. Figure out a solution without code
  4. Write out our solution in code
  5. Double check for errors
  6. Test our code with our test cases
  7. Analyze space & time complexity
  8. Can we do better?