Putting AWS Skills to Work: Building an AB Testing TrackerIntro Over the last few weeks, I’ve been working on projects that combine my AWS learning with my background in Growth Engineering. I wanted something more relevant to my domain than the classic “Cloud Resume” challenge. So I built an AB Testing Trac...Aug 15, 2025·2 min read
Solving Valid Parantheses - Leetcode problemMastering the Art of Balancing Parentheses with StacksDec 27, 2023·1 min read
Sum of first N natural numbersThe sum of first N Natural numbers is .... N * (N+1) / 2 Prove it. So let's assume Sum as Sum = 1 + 2 + 3 + ......N-2+N-1+N Now Reverse it. Sum = N+N-1+N-2+.....3+2+1 Add these. Sum = 1 + 2 + 3 + ......N-2+N-1+N Sum = N+N-1+N-2+.....3+2+1 2Sum = (N+...Nov 23, 2023·1 min read