LeetCode Drawing - Day 3
395. Longest Substring with At Least K Repeating Characters
Take aways
Algorithm
* Devise a way to calculate the character frequency in s[i, j]
* Use prefixSum arrays for each character in the alphabet
Coding
* Good: Defined predicate functions for readability
* Good: Described what freqSum(prefixSum, i, j) means as comment