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
- Host: GitHub
- URL: https://github.com/balapriyac/coding-interview-prep
- Owner: balapriyac
- Created: 2024-04-26T14:15:23.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-30T14:45:43.000Z (about 2 years ago)
- Last Synced: 2025-07-02T11:44:21.487Z (about 1 year ago)
- Topics: coding-challenges, coding-interviews, python
- Language: Python
- Homepage:
- Size: 16.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Coding Interview Prep
Trying to document my coding interview prep: readings, courses, and solving coding interview questions

## 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)|