- Coursera courses
- AWS tutorial Simplilearn - https://www.youtube.com/playlist?list=PLEiEAq2VkUULlNtIFhEQHo8gacvme35rz
- AWS Intellipath - https://www.youtube.com/watch?v=cJLJrLlZ8no
- AWS Python - https://www.youtube.com/playlist?list=PLc2rvfiptPSTtvqCNHhVF4sQ2rJoNqvGi
- Python Boto3 AWS - https://www.youtube.com/playlist?list=PLL2hlSFBmWwx7AFCvrurMhUOJc7kc0ynP
- Serverless FCC - https://www.youtube.com/playlist?list=PLWKjhJtqVAbkXQS12WiLsH1oaNZBSoWuV
- AWS Cloud Practitioner FCC - https://www.youtube.com/watch?v=3hLmDS179YE
- AWS Solutions Architect FCC - https://www.youtube.com/watch?v=Ia-UEYYR44s
- AWS for startups FCC - https://www.youtube.com/watch?v=U3VSJhaC4kc
- DP for beginners by @wh0ami - https://leetcode.com/discuss/general-discussion/662866/dp-for-beginners-problems-patterns-sample-solutions || [LIST - https://leetcode.com/list/x1k8lxi5]
- Graph for beginners by @wh0ami - https://leetcode.com/discuss/general-discussion/655708/graph-for-beginners-problems-pattern-sample-solutions/562734 || [LIST - https://leetcode.com/list/x1wy4de7]
- Sliding window for beginners by @wh0ami - https://leetcode.com/discuss/general-discussion/657507/sliding-window-for-beginners-problems-template-sample-solutions/562721 || [LIST - https://leetcode.com/list/x1lbzfk3]
- DP Patterns by @aatalyk - https://leetcode.com/discuss/general-discussion/458695/dynamic-programming-patterns Leetcode patterns from edu_cative_dot_io by @late_riser - https://leetcode.com/discuss/general-discussion/457546/LeetCode-Problem-Patterns-from-***
- List of questions sorted by common patterns by @Maverick2594 - https://leetcode.com/discuss/career/448285/List-of-q
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <bits/stdc++.h> // Include every standard library | |
using namespace std; | |
typedef long long LL; | |
typedef pair<int, int> pii; | |
typedef pair<LL, LL> pll; | |
typedef pair<string, string> pss; | |
typedef vector<int> vi; | |
typedef vector<vi> vvi; | |
typedef vector<pii> vii; |