An open API service indexing awesome lists of open source software.

https://github.com/balapriyac/coding-interview-prep

Preparing for coding interviews
https://github.com/balapriyac/coding-interview-prep

coding-challenges coding-interviews python

Last synced: 11 months ago
JSON representation

Preparing for coding interviews

Awesome Lists containing this project

README

          

# Coding Interview Prep

Trying to document my coding interview prep: readings, courses, and solving coding interview questions

![practice](https://i.imgur.com/iIumReY.png)

## Books and Resources
I find the following resources quite helpful in my prep:

1. Elements of Programming Interviews
2. Cracking the Coding Interview

A couple good resources to brush up Python skills:

1. CS50 Python
2. Introduction to Computer Science and Programming in Python

I've started working through Blind 75. Here's my progress:

|S.No.|Problem|Topic|Status|Spaced Rep|Solution|
|----|----|----|----|-----|----|
|1|[Two Sum](https://leetcode.com/problems/two-sum/)|Arrays|✅|🔵|[Python](https://github.com/balapriyac/coding-interview-prep/blob/main/arrays/two-sum/1.py), [Python](https://github.com/balapriyac/coding-interview-prep/blob/main/arrays/two-sum/2.py)|
|2|[Contains Duplicate](https://leetcode.com/problems/contains-duplicate/)|Arrays|✅|🔵|[Python](https://github.com/balapriyac/coding-interview-prep/blob/main/arrays/contains-duplicate/solution.py)|