Skip to content

Instantly share code, notes, and snippets.

@aaronreulkhoo
aaronreulkhoo / grokking_to_leetcode.md
Last active November 13, 2022 15:38
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):