Skip to content

Instantly share code, notes, and snippets.

04e89088af960393d5023e614975ceced15f4b8846943ed6d4a5a027022005767f9343476e5d6ef9f98c89acb4c3a9192669ff49782997cd78e4a1eec10185d087
@oseau
oseau / SimpleHTTPServerWithUpload.py
Created August 19, 2019 05:35 — forked from UniIsland/SimpleHTTPServerWithUpload.py
Simple Python Http Server with Upload
#!/usr/bin/env python
"""Simple HTTP Server With Upload.
This module builds on BaseHTTPServer by implementing the standard GET
and HEAD requests in a fairly straightforward manner.
"""
@oseau
oseau / grokking_to_leetcode.md
Last active March 29, 2022 19:35 — forked from tykurtz/grokking_to_leetcode.md
Grokking the coding interview equivalent leetcode problems

GROKKING NOTES

I liked the way Grokking the coding interview organized problems into learnable patterns. However, the course is expensive and the majority of the time the problems are copy-pasted from leetcode. As the explanations on leetcode are usually just as good, the course really boils down to being a glorified curated list of leetcode problems.

So below I made a list of leetcode problems that are as close to grokking problems as possible.

Pattern: Sliding Window