Skip to content

Instantly share code, notes, and snippets.

View rohitbemax's full-sized avatar

Rohit rohitbemax

  • Bangalore India
View GitHub Profile
#!/bin/bash
set -euo pipefail
echo "📁 Creating mount base directories..."
mkdir -p /mnt/nvme /mnt/nvme/nvme1n1 /mnt/nvme/nvme2n1
echo "📦 Installing required packages..."
yum update -y && yum install -y nvme-cli xfsprogs
echo "💾 Formatting NVMe drives..."
@rohitbemax
rohitbemax / grokking_to_leetcode.md
Created September 14, 2023 17:08 — 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