Skip to content

Instantly share code, notes, and snippets.

View andrehadianto's full-sized avatar
🏠
Working from home

Andre Hadianto andrehadianto

🏠
Working from home
View GitHub Profile
@andrehadianto
andrehadianto / grokking_to_leetcode.md
Created September 28, 2022 14:14 — forked from aaronreulkhoo/grokking_to_leetcode.md
Grokking the Coding Interview

GROKKING NOTES

Curated list of leetcode problems which are close to the grokking course.

Pattern: Sliding Window

def maximumSumSubarray (self,K,nums,N): if K>len(nums):