mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 08:54:07 +00:00
455 B
455 B
misc. thoughts and maybe tips
- libraries:
- essentials: bits/stdc++.h, iostream
- data structures: vector
- (q21)when working with structs, can't return locally created objects from a function, even when using new keyword...?
- 2sum, 3sum, palindrome, and other two pointer problems can prolly be identified by how they require comparison-based solutions across the entire array, and the array is to be sorted or ordered in some way for traversal