This repository contains 50 handpicked problems on:
- Time Complexity & Space Complexity
- Recursion Basics
These problems are commonly asked in Google, Amazon, Microsoft, Facebook, Apple interviews.
complexity/
β Problems related to Big-O, sorting, searching, DS complexities.recursion/
β Classic recursion problems (factorial, fibonacci, Hanoi, permutations, subsets).utils/
β Helper functions and common snippets.
g++ recursion/01_factorial.cpp -o factorial && ./factorial