Useful Resources
Permanent note to keep all useful hyperlinks.
- https://en.cppreference.com/w/
- https://stackoverflow.com/questions/388242/the-definitive-c-book-guide-and-list
- https://artofproblemsolving.com/community/c90633h1291397
- https://baites.github.io/algorithms/algorithm-analysis/2020/03/23/string-hashing-and-palindromes.html
- https://sblaze.home.blog/blog-feed/
- https://codeforces.com/blog/entry/95106 | https://shahjalalshohag.github.io/topic-list/
- https://github.com/indy256/codelibrary
- https://csacademy.com/blog/fast-fourier-transform-and-variations-of-it
- https://codeforces.com/blog/entry/96003
- https://www.robinwieruch.de/react-libraries/#how-to-create-a-react-project
- https://studies.cs.helsinki.fi/stats
- https://leetcode.com/problems/find-the-duplicate-number/
- https://leetcode.com/problems/first-missing-positive/
- https://leetcode.com/problems/container-with-most-water/
- https://www.danielleskosky.com/largest-rectangle-in-histogram/ (See “Get Better at Algorithms!” section too)
-
https://www.educative.io/courses/grokking-the-coding-interview
-
Books Allocation Problem
-
https://stackoverflow.com/questions/35781390/number-of-subarrays-with-sum-less-than-or-equal-a-given-k (O(n) for non-negative and O(nlg(n)) for all integers -> second similar to “Largest sum of contiguous subarray no larger than K”)
-
https://stackoverflow.com/questions/2067988/recursive-lambda-functions-in-c11 & https://en.wikipedia.org/wiki/Fixed-point_combinator (y_combinator)