Skip to content

Instantly share code, notes, and snippets.

View yashjoshi76's full-sized avatar
💭
For flying whales and dunes

Yash Joshi yashjoshi76

💭
For flying whales and dunes
  • None
  • Cork
View GitHub Profile
@yashjoshi76
yashjoshi76 / grokking_to_leetcode.md
Created May 29, 2022 21:34 — 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

@yashjoshi76
yashjoshi76 / perfectelementary.bash
Created June 27, 2019 03:34 — forked from IssacTran/perfectelementary.bash
HowTo Install the perfect Elementary-OS
#Download Elementary OS from here:
#http://sourceforge.net/projects/elementaryos/files/stable/
#First you update your system
sudo apt-get update && sudo apt-get dist-upgrade
#Install Google Chrome
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'