Pushpendra12314 Profile Banner
Pushpendra123 Profile
Pushpendra123

@Pushpendra12314

Followers
20
Following
201
Media
112
Statuses
127

Hello everyone! I'm Pushpendra Kewat, a passionate BCA student at AKS University, Satna. I enjoy diving deep into coding challenges, especially in C++.

Satna, Madhya Pradesh, India
Joined September 2021
Don't wanna be here? Send us removal request.
@Pushpendra12314
Pushpendra123
14 days
πŸ“… Day 30 β€” 6 July 2025.πŸ” Practiced recursion with:.βœ… Tower of Hanoi.βœ… Subsets (Leetcode 78).βœ… Subsets II with duplicates (Leetcode 90).⚑ Benchmarked pass-by-value vs reference.πŸ” Ref = 5x faster, Value = cleaner.#Cplusplus #DSA #Recursion #100DaysOfCode #Leetcode
Tweet media one
Tweet media two
Tweet media three
0
0
7
@Pushpendra12314
Pushpendra123
19 days
πŸ“… Day 27, 28, 29.πŸ—“οΈ 1 July 2025.βœ… Practiced recursion deeply:. Pre/In/Post pattern (O(2ⁿ)). Remove 'a' from string (O(n)). LeetCode 344 – Reverse String (two-pointer, recursion, extra space). Every day = stronger logic πŸ’ͺ.#100DaysOfCode #DSA #Cplusplus #Recursion #LeetCode
Tweet media one
Tweet media two
Tweet media three
Tweet media four
0
0
3
@Pushpendra12314
Pushpendra123
22 days
πŸ“Day 25 & 26.πŸ“… 28 June 2025.🧠 Practiced Recursion with the classic Maze Path Problem in C++.βœ… Counted total ways from (1,1) to (3,3).βœ… Printed all paths using just recursion, no DP.Sample paths:. RRDD, RDRD, RDDR, DRRD, DRDR, DDRR.πŸ’‘ Learned:.#100DaysOfCode #Recursion #DSA
Tweet media one
Tweet media two
0
0
2
@Pushpendra12314
Pushpendra123
24 days
πŸ“… Day 23 & 24.πŸ—“οΈ 26 June 2025.Practiced recursion:.β€’ Factorial.β€’ Power (a^b).β€’ Fibonacci.β€’ Climbing Stairs (Leetcode 70 – recursive). Recursion getting clear πŸ”.#100DaysOfCode #CPP #DSA #Recursion #Leetcode70
Tweet media one
Tweet media two
Tweet media three
Tweet media four
0
0
12
@Pushpendra12314
Pushpendra123
26 days
πŸ“˜ Day 22 – #100DaysOfCode.πŸ” Learned how to analyze and optimize Time & Space Complexity in C++.πŸ’‘ Solved Leetcode 2207 – Find All K-Distant Indices in an Array.βœ… Improved space efficiency by removing extra arrays.#Leetcode #CPP #DSA #CodingJourney #CodeNewbie
Tweet media one
0
0
1
@Pushpendra12314
Pushpendra123
27 days
Day 21 – 23 June 2025.βœ”οΈ Learned Time & Space Complexity.βœ”οΈ Compared 4 methods to find duplicates.βœ”οΈ Solved:.β€’ Leetcode 205 – Isomorphic Strings.β€’ Leetcode 217 – Contains Duplicate.Explored 442 next πŸ‘¨β€πŸ’».#100DaysOfCode #DSA #CPlusPlus
Tweet media one
Tweet media two
0
0
2
@Pushpendra12314
Pushpendra123
28 days
Day 19 & 20 – #100DaysOfCode.πŸ“… 22 June 2025.Due to a sudden power cut in my village, I couldn't post daily. βœ… Used stringstream for word splitting.βœ… Learned stoi vs stoll.βœ… Found most frequent word in a sentence.βœ… Solved Longest Common Prefix (Leetcode).#CPlusPlus #Coding
Tweet media one
0
0
3
@Pushpendra12314
Pushpendra123
30 days
Day 16, 17 & 18 – #100DaysOfCode.πŸ“… 20 June 2025.The last 3 days have been all about strings in C++!.πŸ”Ή Solved multiple string problems (screenshot says it all πŸ˜„).πŸ”Ή Practiced character frequency, indexing, and built-in functions.#Cplusplus #Leetcode #DSA #LearningInPublic
Tweet media one
Tweet media two
Tweet media three
Tweet media four
0
0
3
@Pushpendra12314
Pushpendra123
1 month
Day 15 – 17 June 2025 #100DaysOfCode.πŸ” Solved Leetcode 240: Search a 2D Matrix II.Used the top-right corner approach for fast search in O(m + n) time. Clean and efficient for sorted 2D matrices!.Back to code grind now that exams are over! πŸ’»πŸ”₯.#LeetCode #Coding #100daysofcode
Tweet media one
0
0
16
@Pushpendra12314
Pushpendra123
1 month
Day 14 – June 16, 2025.πŸŽ“ Exams over β€” back to coding grind! πŸ’ͺ.πŸš€ Solved LeetCode 861: Score After Flipping Matrix.πŸ‘‰ Focused on flipping rows & columns smartly.✨ Used binary row scores to maximize the sum.#100DaysOfCode #LeetCode #Cplusplus #ProblemSolving #CodeNewbie
Tweet media one
0
0
11
@Pushpendra12314
Pushpendra123
1 month
Hi everyone! πŸ‘‹.Just a quick update β€” I’ll be taking a break from June 4 to June 14, 2025, as I prepare for my upcoming examinations, which will take place from June 5 to June 14. Thank you for your understanding and support. I’m looking forward to being back soon! πŸ™.
0
0
1
@Pushpendra12314
Pushpendra123
2 months
Day 13 – #100DaysOfCode.Solved LeetCode 118: Pascal's Triangle βœ….Practiced 2D vectors, loops, and pattern generation in C++. Learning how to build logic cleanly and efficiently!.#LeetCode #DSA #365DaysofCoding
Tweet media one
0
0
2
@Pushpendra12314
Pushpendra123
2 months
Day 12 – 2 June 2025#100DaysOfCode.Today, I played around with printing 2D matrices in zigzag style (row-wise & column-wise)β€”super fun once you get the pattern!.That helped me finally crack Leetcode 54: Spiral Matrix .Turns out spiral is just zigzag in 4 directions!.#Coding #DSA
Tweet media one
0
0
2
@Pushpendra12314
Pushpendra123
2 months
πŸ“…Day 11 – June 1, 2025.Today I learned how to multiply two 2D matrices using C++! 🧠.βœ…Used vector<vector<int>> to dynamically store matrices.βœ…Applied triple loop for matrix multiplication logic.βœ…Optimized for sparse matrices (skipped 0s to boost performance).#365DaysOfCode
Tweet media one
Tweet media two
0
0
1
@Pushpendra12314
Pushpendra123
2 months
πŸ“… Day 10 – May 31, 2025.Today I learn how to transpose a matrix without extra space by swapping elements across the diagonal.Then I use that trick to solve LeetCode 48 (Rotate Image).First, I do it manually (swap + reverse rows).Then I use reverse() from STL β€” much cleaner .#DSA
Tweet media one
Tweet media two
Tweet media three
0
0
2
@Pushpendra12314
Pushpendra123
2 months
πŸ—“οΈ Day 8 – May 29, 2025.❌ Unable to study due to a sudden cold. πŸ›Œ Took rest. πŸ—“οΈ Day 9 – May 30, 2025.Solved basic 2D matrix problems:.Find maximum element.Find minimum element.Compute sum and product of elements.Perform transpose operation.Solved LeetCode 867 – Transpose Matrix
Tweet media one
Tweet media two
Tweet media three
Tweet media four
0
0
10
@Pushpendra12314
Pushpendra123
2 months
Day 7 – May 27, 2025.Revisiting 2D arrays in C++ today:.Explored different ways to declare & initialize.Solved for max & min values (both with and without built-ins).Sharpened my nested loops & comparison logic.Great way to reinforce DSA fundamentals! .#DSA #365DaysofCoding
Tweet media one
Tweet media two
Tweet media three
Tweet media four
0
0
1
@Pushpendra12314
Pushpendra123
2 months
πŸ“… Day 6 – May 27, 2025.Just solved the Trapping Rain Water problem on LeetCode(42)!.Started with the prefix/suffix max approach, then optimized it to a two-pointer solution πŸ’‘.βœ… O(n) time, O(1) space.#LeetCode #DSA #Cplusplus #CodingInterview #100DaysOfCode #ProblemSolving
Tweet media one
Tweet media two
2
0
8
@Pushpendra12314
Pushpendra123
2 months
Day 5: May 26, 2025.Just solved LeetCode 31: Next Permutation.Steps:.1. Find pivot: first i from right where nums[i] < nums[i+1]. 2. If not found, reverse the array.3. Else: swap with just larger element on right, then reverse suffix.Sample: [1,3,2] β†’ [2,1,3].#LeetCode #DSA
Tweet media one
0
0
3
@Pushpendra12314
Pushpendra123
2 months
Day 4: May 25, 2025.Today, I solved a new LeetCode problem .LeetCode 88 – Merge Sorted Array. #LeetCodeChallenge #Sorting #Coding #100Days
Tweet media one
0
0
6