qwertyboss

The only difference between ordinary and extraordinary is just that little "extra".

Shifting focus from goals to process

Be better at
- competitive coding
- ML system design
- understanding AI research papers

721. Accounts Merge

https://leetcode.com/problems/accounts-merge/
Pattern: connected graph

ML Use case

- Project metrics: https://psvishnu.substack.com/p/summary-critical-project-metrics
- Collected new use cases
- Started working on a new use case

797. All Paths From Source to Target

Pattern: Graph DFS/BFS
Complexity: T:O(2^N), S:O(N)

weekly content 269

- Find Target Indices After Sorting Array. Pattern: sorting
- K Radius Subarray Averages. Pattern: Sliding Window
- Removing Minimum and Maximum from Array, Pattern: ???
- Find All people with Secret, Pattern: Graph
Carl Poppa 🛸

wow dude, working hard on a Sunday!

0 Likes
Carl Poppa 🛸

Lol never heard it, but it's a good one! all the best for the interviews!

0 Likes

66th Leetcode bi-weekly challenge

1. Count Common Words With One Occurrence
2. Minimum Number of Buckets Required to Collect Rainwater from Houses
3. Minimum Cost Homecoming of a Robot in a Grid
4. Count Fertile Pyramids in a Land

238. Product of Array Except Self

Optimized solution: T:O(n) S:O(1)
Pattern: Prefix and Suffix sum

986. Interval List Intersections

https://leetcode.com/problems/interval-list-intersections/

Important point: Know what are intersecting points and the formula to find intersection is max(x1,x2) and min(y1,y2)