#leetcode75 search results

Day 71 of #LeetCode75 Solved Problem 2235 – Add Two Integers. A simple one today Time Complexity:O(max (m,n)) Space Complexity: O(1) #LeetCode #DSA #100DaysOfCode #CodingJourney

ANNISH_SEN's tweet image. Day 71 of #LeetCode75
Solved Problem 2235 – Add Two Integers.
A simple one today 
Time Complexity:O(max (m,n)) 
Space Complexity: O(1)
#LeetCode #DSA #100DaysOfCode #CodingJourney

Day 70 of #LeetCode75 Today’s problem was really tough for me — Evaluate Division. Tried multiple times, got stuck, got frustrated… But didn’t give up. I understood and solved it with the help of YouTube Not my cleanest day, but definitely a learning day. Progress is progress.

ANNISH_SEN's tweet image. Day 70 of #LeetCode75 Today’s problem was really tough for me — Evaluate Division. Tried multiple times, got stuck, got frustrated… But didn’t give up.  I understood and solved it with the help of YouTube Not my cleanest day, but definitely a learning day. Progress is progress.
ANNISH_SEN's tweet image. Day 70 of #LeetCode75 Today’s problem was really tough for me — Evaluate Division. Tried multiple times, got stuck, got frustrated… But didn’t give up.  I understood and solved it with the help of YouTube Not my cleanest day, but definitely a learning day. Progress is progress.

Day 68 of #LeetCode75 – Problem 649: Dota2 Senate Didn’t solve this one on my own today. I explored the queue-based solution to understand how the banning simulation works. Not my solution, but definitely my learning. #LeetCode #DSA #CodingJourney #100DaysOfCode #CPlusPlus

ANNISH_SEN's tweet image. Day 68 of #LeetCode75 – Problem 649: Dota2 Senate 

Didn’t solve this one on my own today.
I explored the queue-based solution to understand how the banning simulation works.
Not my solution, but definitely my learning. 
#LeetCode #DSA #CodingJourney #100DaysOfCode #CPlusPlus

Day 69 of #LeetCode75 – Problem 790 (Domino & Tromino Tiling) Today learned the DP + recurrence relation approach. Interesting formula: T(n) = 2·T(n-1) + T(n-3) Slowly understanding these DP patterns. #DSA #DynamicProgramming #100DaysOfCode #CodingJourney

ANNISH_SEN's tweet image. Day 69 of #LeetCode75 – Problem 790 (Domino & Tromino Tiling)
Today  learned the DP + recurrence relation approach.
Interesting formula:
T(n) = 2·T(n-1) + T(n-3)
Slowly understanding these DP patterns. 
#DSA #DynamicProgramming #100DaysOfCode #CodingJourney

Day 58 of #LeetCode75 Worked on Rotting Oranges (BFS) today. I wrote most of the solution myself (~60%), but needed some guidance to fix the BFS logic and boundary handling. #100DaysOfCode #LeetCode #DSA #codingjourney

ANNISH_SEN's tweet image. Day 58 of  #LeetCode75  Worked on Rotting Oranges (BFS) today. I wrote most of the solution myself (~60%), but needed some guidance to fix the BFS logic and boundary handling.  #100DaysOfCode #LeetCode #DSA #codingjourney
ANNISH_SEN's tweet image. Day 58 of  #LeetCode75  Worked on Rotting Oranges (BFS) today. I wrote most of the solution myself (~60%), but needed some guidance to fix the BFS logic and boundary handling.  #100DaysOfCode #LeetCode #DSA #codingjourney
ANNISH_SEN's tweet image. Day 58 of  #LeetCode75  Worked on Rotting Oranges (BFS) today. I wrote most of the solution myself (~60%), but needed some guidance to fix the BFS logic and boundary handling.  #100DaysOfCode #LeetCode #DSA #codingjourney

Day 56 of #LeetCode75 — Problem 208: Implement Trie (Prefix Tree) Today I implemented a Trie — a tree-based data structure used for fast word insertions, searches & prefix lookups. Key concepts: Node structure with 26 child pointers Recursion for insert/search Dictionary

ANNISH_SEN's tweet image. Day 56 of #LeetCode75 — Problem 208: Implement Trie (Prefix Tree)

Today I implemented a Trie — a tree-based data structure used for fast word insertions, searches & prefix lookups.

Key concepts:
Node structure with 26 child pointers
Recursion for insert/search
 Dictionary

Day 54 of #LeetCode75 — Problem2336: Smallest Number in Infinite Set This one was tricky, learned it with help and understood the logic behind maintaining: A pointer (cur) to the next smallest number A min-heap to store numbers that were added back #Day54 #LeetCode #DSA #CPP

ANNISH_SEN's tweet image. Day 54 of #LeetCode75 — Problem2336: Smallest Number in Infinite Set

This one was tricky, learned it with help and understood the logic behind maintaining:

A pointer (cur) to the next smallest number
A min-heap to store numbers that were added back

#Day54 #LeetCode #DSA #CPP

Day 45 of #LeetCode75 Challenge – Problem #62 (Unique Paths) Solved using Dynamic Programming to count all possible paths a robot can take from the top-left to the bottom-right of a grid. Time:O(m×n) Space:O(m×n) #Day45 #LeetCode #100DaysOfCode #DSA #CPlusPlus #CodingJourney

ANNISH_SEN's tweet image. Day 45 of #LeetCode75 Challenge – Problem #62 (Unique Paths)
Solved using Dynamic Programming to count all possible paths a robot can take from the top-left to the bottom-right of a grid.
 Time:O(m×n)
 Space:O(m×n)
#Day45 #LeetCode #100DaysOfCode #DSA #CPlusPlus #CodingJourney
ANNISH_SEN's tweet image. Day 45 of #LeetCode75 Challenge – Problem #62 (Unique Paths)
Solved using Dynamic Programming to count all possible paths a robot can take from the top-left to the bottom-right of a grid.
 Time:O(m×n)
 Space:O(m×n)
#Day45 #LeetCode #100DaysOfCode #DSA #CPlusPlus #CodingJourney

These are My last Contests I am improving gradually but still stucked not able to cross q3 mark please provide some advice how to break this barieer . #leetcode75 #programming #coding #learnInPublic

Rishabh38074426's tweet image. These are My last Contests I am improving gradually but still stucked not able to cross q3 mark please provide some advice how to break this barieer .
#leetcode75 #programming #coding #learnInPublic

1207. Unique number of Occurrences. Leetcode problem solution using Golang. #Leetcode75 #Golang

the_code_club's tweet image. 1207. Unique number of Occurrences.

Leetcode problem solution using Golang.

#Leetcode75 #Golang

Day 53 of #LeetCode75 — Problem 215: Kth Largest Element in an Array Used a max-heap (priority queue) to extract the k-th largest efficiently—no sorting needed. T:O(n log n) SC:O(n) #Day53 #LeetCode #DSA #CPP #100DaysOfCode #CodingJourney

ANNISH_SEN's tweet image. Day 53 of #LeetCode75 — Problem 215: Kth Largest Element in an Array

Used a max-heap (priority queue) to extract the k-th largest efficiently—no sorting needed.

T:O(n log n)
 SC:O(n)

#Day53 #LeetCode #DSA #CPP #100DaysOfCode #CodingJourney
ANNISH_SEN's tweet image. Day 53 of #LeetCode75 — Problem 215: Kth Largest Element in an Array

Used a max-heap (priority queue) to extract the k-th largest efficiently—no sorting needed.

T:O(n log n)
 SC:O(n)

#Day53 #LeetCode #DSA #CPP #100DaysOfCode #CodingJourney

Day 52 of #LeetCode75 — Problem 547: Number of Provinces Converted the adjacency matrix into an adjacency list and used DFS to count connected components. Each DFS run = one province. TC: O(n²) SC: O(n) #Day52 #LeetCode #DSA #CPP #CodingJourney

ANNISH_SEN's tweet image. Day 52 of #LeetCode75 — Problem 547: Number of Provinces

Converted the adjacency matrix into an adjacency list and used DFS to count connected components.
Each DFS run = one province.
TC: O(n²)
 SC: O(n)

#Day52 #LeetCode #DSA #CPP #CodingJourney
ANNISH_SEN's tweet image. Day 52 of #LeetCode75 — Problem 547: Number of Provinces

Converted the adjacency matrix into an adjacency list and used DFS to count connected components.
Each DFS run = one province.
TC: O(n²)
 SC: O(n)

#Day52 #LeetCode #DSA #CPP #CodingJourney

Day 63 of #LeetCode75 Solved Koko Eating Bananas using Binary Search Key ideas I learned: 🔸 Binary search on answer space 🔸 Checking feasibility with a helper function 🔸 Ceiling division trick for hours 🔸 Minimizing speed while staying within time limit

ANNISH_SEN's tweet image. Day 63 of #LeetCode75

Solved Koko Eating Bananas  using Binary Search 

Key ideas I learned:
🔸 Binary search on answer space
🔸 Checking feasibility with a helper function
🔸 Ceiling division trick for hours
🔸 Minimizing speed while staying within time limit

Day 46 of #LeetCode75 Challenge Problem #334 (Increasing Triplet Subsequence) Used a greedy approach with two variables tracking smallest and second-smallest elements to detect an increasing triplet. Time: O(n) Space: O(1) #Day46 #LeetCode #100DaysOfCode #DSA #CPlusPlus #Coding

ANNISH_SEN's tweet image. Day 46 of #LeetCode75 Challenge Problem #334 (Increasing Triplet Subsequence)
Used a greedy approach with two variables tracking smallest and second-smallest elements to detect an increasing triplet.
Time: O(n)
Space: O(1)

#Day46 #LeetCode #100DaysOfCode #DSA #CPlusPlus #Coding
ANNISH_SEN's tweet image. Day 46 of #LeetCode75 Challenge Problem #334 (Increasing Triplet Subsequence)
Used a greedy approach with two variables tracking smallest and second-smallest elements to detect an increasing triplet.
Time: O(n)
Space: O(1)

#Day46 #LeetCode #100DaysOfCode #DSA #CPlusPlus #Coding

Day 65 of #LeetCode75 – Problem 62 (Unique Paths) Solved Unique Paths using Recursion + Memoization (Top-Down DP) Complexity: Time: O(m × n) Space: O(m × n) #Day64 #LeetCode #DSA #DynamicProgramming #CPlusPlus #100DaysOfCode #CodingJourney

ANNISH_SEN's tweet image. Day 65 of #LeetCode75 – Problem 62 (Unique Paths)

Solved Unique Paths using Recursion + Memoization (Top-Down DP)

Complexity:
Time: O(m × n)
Space: O(m × n)
#Day64 #LeetCode #DSA #DynamicProgramming #CPlusPlus #100DaysOfCode #CodingJourney

Day 44 of #LeetCode75 Challenge – Problem714 (Best Time to Buy and Sell Stock with Transaction Fee) Used Dynamic Programming (Top-Down Memoization). Time: O(n) Space: O(n) #Day44 #LeetCode #100DaysOfCode #DSA #CPlusPlus #CodingJourney

ANNISH_SEN's tweet image. Day 44 of #LeetCode75 Challenge – Problem714 (Best Time to Buy and Sell Stock with Transaction Fee)
Used Dynamic Programming (Top-Down Memoization).
 Time: O(n)
 Space: O(n)
#Day44 #LeetCode #100DaysOfCode #DSA #CPlusPlus #CodingJourney

Day 64 of #LeetCode75 – Problem #1143 (Longest Common Subsequence) Solved using memoized recursion (Top-Down DP) to efficiently compute LCS between two strings. Complexity: Time: O(n × m) Space: O(n × m) #Day64 #LeetCode #DSA #DynamicProgramming #CPlusPlus #CodingJourney

ANNISH_SEN's tweet image. Day 64 of #LeetCode75 – Problem #1143 (Longest Common Subsequence)

Solved using memoized recursion (Top-Down DP) to efficiently compute LCS between two strings.

Complexity:
Time: O(n × m)
Space: O(n × m)
#Day64 #LeetCode #DSA #DynamicProgramming #CPlusPlus #CodingJourney

Binary Tree - DFS Leaf-Similar Trees #LeetCode75 34/75 #Python #DSA #100DaysOfCode #LeetCode

Priyansh0310's tweet image. Binary Tree - DFS  
Leaf-Similar Trees #LeetCode75        

34/75       

#Python #DSA #100DaysOfCode #LeetCode
Priyansh0310's tweet image. Binary Tree - DFS  
Leaf-Similar Trees #LeetCode75        

34/75       

#Python #DSA #100DaysOfCode #LeetCode

Day 48 of #LeetCode75 Challenge: Decode String I explored a stack-based solution in C++ to handle nested brackets and repeated strings. Learned how to manage numbers and strings with stacks Great practice for understanding string & stack logic #100DaysOfCode #DSA #CodingJourney

ANNISH_SEN's tweet image. Day 48 of #LeetCode75 Challenge: Decode String

I explored a stack-based solution in C++ to handle nested brackets and repeated strings.
Learned how to manage numbers and strings with stacks
Great practice for understanding string & stack logic

#100DaysOfCode #DSA #CodingJourney
ANNISH_SEN's tweet image. Day 48 of #LeetCode75 Challenge: Decode String

I explored a stack-based solution in C++ to handle nested brackets and repeated strings.
Learned how to manage numbers and strings with stacks
Great practice for understanding string & stack logic

#100DaysOfCode #DSA #CodingJourney
ANNISH_SEN's tweet image. Day 48 of #LeetCode75 Challenge: Decode String

I explored a stack-based solution in C++ to handle nested brackets and repeated strings.
Learned how to manage numbers and strings with stacks
Great practice for understanding string & stack logic

#100DaysOfCode #DSA #CodingJourney

Day 71 of #LeetCode75 Solved Problem 2235 – Add Two Integers. A simple one today Time Complexity:O(max (m,n)) Space Complexity: O(1) #LeetCode #DSA #100DaysOfCode #CodingJourney

ANNISH_SEN's tweet image. Day 71 of #LeetCode75
Solved Problem 2235 – Add Two Integers.
A simple one today 
Time Complexity:O(max (m,n)) 
Space Complexity: O(1)
#LeetCode #DSA #100DaysOfCode #CodingJourney

Day 70 of #LeetCode75 Today’s problem was really tough for me — Evaluate Division. Tried multiple times, got stuck, got frustrated… But didn’t give up. I understood and solved it with the help of YouTube Not my cleanest day, but definitely a learning day. Progress is progress.

ANNISH_SEN's tweet image. Day 70 of #LeetCode75 Today’s problem was really tough for me — Evaluate Division. Tried multiple times, got stuck, got frustrated… But didn’t give up.  I understood and solved it with the help of YouTube Not my cleanest day, but definitely a learning day. Progress is progress.
ANNISH_SEN's tweet image. Day 70 of #LeetCode75 Today’s problem was really tough for me — Evaluate Division. Tried multiple times, got stuck, got frustrated… But didn’t give up.  I understood and solved it with the help of YouTube Not my cleanest day, but definitely a learning day. Progress is progress.

Day 69 of #LeetCode75 – Problem 790 (Domino & Tromino Tiling) Today learned the DP + recurrence relation approach. Interesting formula: T(n) = 2·T(n-1) + T(n-3) Slowly understanding these DP patterns. #DSA #DynamicProgramming #100DaysOfCode #CodingJourney

ANNISH_SEN's tweet image. Day 69 of #LeetCode75 – Problem 790 (Domino & Tromino Tiling)
Today  learned the DP + recurrence relation approach.
Interesting formula:
T(n) = 2·T(n-1) + T(n-3)
Slowly understanding these DP patterns. 
#DSA #DynamicProgramming #100DaysOfCode #CodingJourney

Day 68 of #LeetCode75 – Problem 649: Dota2 Senate Didn’t solve this one on my own today. I explored the queue-based solution to understand how the banning simulation works. Not my solution, but definitely my learning. #LeetCode #DSA #CodingJourney #100DaysOfCode #CPlusPlus

ANNISH_SEN's tweet image. Day 68 of #LeetCode75 – Problem 649: Dota2 Senate 

Didn’t solve this one on my own today.
I explored the queue-based solution to understand how the banning simulation works.
Not my solution, but definitely my learning. 
#LeetCode #DSA #CodingJourney #100DaysOfCode #CPlusPlus

🔥 Problem of the Day: Merge String Alternately Approach: Language: C++ Difficulty: Easy ✅ Passed all testcases #DSA #LeetCode75

SunnyKumar51305's tweet image. 🔥 Problem of the Day:  Merge String Alternately
Approach:  
Language: C++
Difficulty: Easy
✅ Passed all testcases
#DSA #LeetCode75

🔥 Problem of the Day: Simplify Path Approach: Language: C++ Difficulty: Easy ✅ Passed all testcases #DSA #LeetCode75

SunnyKumar51305's tweet image. 🔥 Problem of the Day:  Simplify Path
Approach:  
Language: C++
Difficulty: Easy
✅ Passed all testcases
#DSA #LeetCode75
SunnyKumar51305's tweet image. 🔥 Problem of the Day:  Simplify Path
Approach:  
Language: C++
Difficulty: Easy
✅ Passed all testcases
#DSA #LeetCode75

🔥 Problem of the Day: Find The Middle Index In Array Approach: Language: C++ Difficulty: Easy ✅ Passed all testcases #DSA #LeetCode75

SunnyKumar51305's tweet image. 🔥 Problem of the Day:  Find The Middle Index In Array 
Approach:  
Language: C++
Difficulty: Easy
✅ Passed all testcases
#DSA #LeetCode75

“Today’s LeetCode Blind 75: Container With Most Water. Funny how the whole problem collapses once you realize one thing: Move. The. Shorter. Side. Most of y’all fighting O(n²) demons while I’m out here cruising with two pointers.” #Leetcode #leetcode75

ChibuikemLucas's tweet image. “Today’s LeetCode Blind 75: Container With Most Water.
Funny how the whole problem collapses once you realize one thing:
Move. The. Shorter. Side.

Most of y’all fighting O(n²) demons while I’m out here cruising with two pointers.”

#Leetcode #leetcode75
ChibuikemLucas's tweet image. “Today’s LeetCode Blind 75: Container With Most Water.
Funny how the whole problem collapses once you realize one thing:
Move. The. Shorter. Side.

Most of y’all fighting O(n²) demons while I’m out here cruising with two pointers.”

#Leetcode #leetcode75

🔥 Problem of the Day: Find Pivot Index Approach: Language: C++ Difficulty: Easy ✅ Passed all testcases #DSA #LeetCode75

SunnyKumar51305's tweet image. 🔥 Problem of the Day:  Find Pivot Index
Approach:  
Language: C++
Difficulty: Easy
✅ Passed all testcases
#DSA #LeetCode75

🔥 Problem of the Day: Find The Highest Altitude Approach: Language: C++ Difficulty: Easy ✅ Passed all testcases #DSA #LeetCode75

SunnyKumar51305's tweet image. 🔥 Problem of the Day:  Find The Highest Altitude 
Approach:  
Language: C++
Difficulty: Easy
✅ Passed all testcases
#DSA #LeetCode75

🔥 Problem of the Day: Longest Subarray of 1's After Deleting One Element Approach: Language: C++ Difficulty: Medium ✅ Passed all testcases #DSA #LeetCode75

SunnyKumar51305's tweet image. 🔥 Problem of the Day:  Longest Subarray of 1's After Deleting One Element 
Approach:  
Language: C++
Difficulty: Medium 
✅ Passed all testcases
#DSA #LeetCode75

🔥 Problem of the Day: Max Consecutive Ones 3 Approach: Language: C++ Difficulty: Medium ✅ Passed all testcases #DSA #LeetCode75

SunnyKumar51305's tweet image. 🔥 Problem of the Day:  Max Consecutive Ones 3
Approach:  
Language: C++
Difficulty: Medium 
✅ Passed all testcases
#DSA #LeetCode75

🔥 Problem of the Day: Decode String Approach: Language: C++ Difficulty: Medium ✅ Passed all testcases #DSA #LeetCode75

SunnyKumar51305's tweet image. 🔥 Problem of the Day:  Decode String 
Approach:  
Language: C++
Difficulty: Medium 
✅ Passed all testcases
#DSA #LeetCode75

Day 66 of #LeetCode75 — Problem 55 (Jump Game). Solved with recursion + memoization: try all jumps from each index and cache results. Time O(n²), Space O(n). Getting better at DP — one problem at a time. #100DaysOfCode #DSA #CPlusPlus #CodingJourney p

ANNISH_SEN's tweet image. Day 66 of #LeetCode75 — Problem 55 (Jump Game).
Solved with recursion + memoization: try all jumps from each index and cache results. Time O(n²), Space O(n).
Getting better at DP — one problem at a time.
#100DaysOfCode #DSA #CPlusPlus #CodingJourney p

🔥 Problem of the Day: Evaluate Reverse Polish Notation Approach: Language: C++ Difficulty: Medium ✅ Passed all testcases #DSA #LeetCode75

SunnyKumar51305's tweet image. 🔥 Problem of the Day:  Evaluate Reverse Polish Notation 
Approach:  
Language: C++
Difficulty: Medium 
✅ Passed all testcases
#DSA #LeetCode75

Day 65 of #LeetCode75 – Problem 62 (Unique Paths) Solved Unique Paths using Recursion + Memoization (Top-Down DP) Complexity: Time: O(m × n) Space: O(m × n) #Day64 #LeetCode #DSA #DynamicProgramming #CPlusPlus #100DaysOfCode #CodingJourney

ANNISH_SEN's tweet image. Day 65 of #LeetCode75 – Problem 62 (Unique Paths)

Solved Unique Paths using Recursion + Memoization (Top-Down DP)

Complexity:
Time: O(m × n)
Space: O(m × n)
#Day64 #LeetCode #DSA #DynamicProgramming #CPlusPlus #100DaysOfCode #CodingJourney

🔥 Problem of the Day: Determine if Two String Are Closed Approach: Language: C++ Difficulty: Medium ✅ Passed all testcases #DSA #LeetCode75

SunnyKumar51305's tweet image. 🔥 Problem of the Day:  Determine if Two String Are Closed 
Approach:  
Language: C++
Difficulty: Medium 
✅ Passed all testcases
#DSA #LeetCode75

Day 64 of #LeetCode75 – Problem #1143 (Longest Common Subsequence) Solved using memoized recursion (Top-Down DP) to efficiently compute LCS between two strings. Complexity: Time: O(n × m) Space: O(n × m) #Day64 #LeetCode #DSA #DynamicProgramming #CPlusPlus #CodingJourney

ANNISH_SEN's tweet image. Day 64 of #LeetCode75 – Problem #1143 (Longest Common Subsequence)

Solved using memoized recursion (Top-Down DP) to efficiently compute LCS between two strings.

Complexity:
Time: O(n × m)
Space: O(n × m)
#Day64 #LeetCode #DSA #DynamicProgramming #CPlusPlus #CodingJourney

🔥 Problem of the Day: Daily Temperature Approach: Language: C++ Difficulty: Medium ✅ Passed all testcases #DSA #LeetCode75

SunnyKumar51305's tweet image. 🔥 Problem of the Day:  Daily Temperature 
Approach:  
Language: C++
Difficulty: Medium 
✅ Passed all testcases
#DSA #LeetCode75

Day 63 of #LeetCode75 Solved Koko Eating Bananas using Binary Search Key ideas I learned: 🔸 Binary search on answer space 🔸 Checking feasibility with a helper function 🔸 Ceiling division trick for hours 🔸 Minimizing speed while staying within time limit

ANNISH_SEN's tweet image. Day 63 of #LeetCode75

Solved Koko Eating Bananas  using Binary Search 

Key ideas I learned:
🔸 Binary search on answer space
🔸 Checking feasibility with a helper function
🔸 Ceiling division trick for hours
🔸 Minimizing speed while staying within time limit

No results for "#leetcode75"

Day 71 of #LeetCode75 Solved Problem 2235 – Add Two Integers. A simple one today Time Complexity:O(max (m,n)) Space Complexity: O(1) #LeetCode #DSA #100DaysOfCode #CodingJourney

ANNISH_SEN's tweet image. Day 71 of #LeetCode75
Solved Problem 2235 – Add Two Integers.
A simple one today 
Time Complexity:O(max (m,n)) 
Space Complexity: O(1)
#LeetCode #DSA #100DaysOfCode #CodingJourney

Day 56 of #LeetCode75 — Problem 208: Implement Trie (Prefix Tree) Today I implemented a Trie — a tree-based data structure used for fast word insertions, searches & prefix lookups. Key concepts: Node structure with 26 child pointers Recursion for insert/search Dictionary

ANNISH_SEN's tweet image. Day 56 of #LeetCode75 — Problem 208: Implement Trie (Prefix Tree)

Today I implemented a Trie — a tree-based data structure used for fast word insertions, searches & prefix lookups.

Key concepts:
Node structure with 26 child pointers
Recursion for insert/search
 Dictionary

Day 68 of #LeetCode75 – Problem 649: Dota2 Senate Didn’t solve this one on my own today. I explored the queue-based solution to understand how the banning simulation works. Not my solution, but definitely my learning. #LeetCode #DSA #CodingJourney #100DaysOfCode #CPlusPlus

ANNISH_SEN's tweet image. Day 68 of #LeetCode75 – Problem 649: Dota2 Senate 

Didn’t solve this one on my own today.
I explored the queue-based solution to understand how the banning simulation works.
Not my solution, but definitely my learning. 
#LeetCode #DSA #CodingJourney #100DaysOfCode #CPlusPlus

Day 70 of #LeetCode75 Today’s problem was really tough for me — Evaluate Division. Tried multiple times, got stuck, got frustrated… But didn’t give up. I understood and solved it with the help of YouTube Not my cleanest day, but definitely a learning day. Progress is progress.

ANNISH_SEN's tweet image. Day 70 of #LeetCode75 Today’s problem was really tough for me — Evaluate Division. Tried multiple times, got stuck, got frustrated… But didn’t give up.  I understood and solved it with the help of YouTube Not my cleanest day, but definitely a learning day. Progress is progress.
ANNISH_SEN's tweet image. Day 70 of #LeetCode75 Today’s problem was really tough for me — Evaluate Division. Tried multiple times, got stuck, got frustrated… But didn’t give up.  I understood and solved it with the help of YouTube Not my cleanest day, but definitely a learning day. Progress is progress.

These are My last Contests I am improving gradually but still stucked not able to cross q3 mark please provide some advice how to break this barieer . #leetcode75 #programming #coding #learnInPublic

Rishabh38074426's tweet image. These are My last Contests I am improving gradually but still stucked not able to cross q3 mark please provide some advice how to break this barieer .
#leetcode75 #programming #coding #learnInPublic

Day 58 of #LeetCode75 Worked on Rotting Oranges (BFS) today. I wrote most of the solution myself (~60%), but needed some guidance to fix the BFS logic and boundary handling. #100DaysOfCode #LeetCode #DSA #codingjourney

ANNISH_SEN's tweet image. Day 58 of  #LeetCode75  Worked on Rotting Oranges (BFS) today. I wrote most of the solution myself (~60%), but needed some guidance to fix the BFS logic and boundary handling.  #100DaysOfCode #LeetCode #DSA #codingjourney
ANNISH_SEN's tweet image. Day 58 of  #LeetCode75  Worked on Rotting Oranges (BFS) today. I wrote most of the solution myself (~60%), but needed some guidance to fix the BFS logic and boundary handling.  #100DaysOfCode #LeetCode #DSA #codingjourney
ANNISH_SEN's tweet image. Day 58 of  #LeetCode75  Worked on Rotting Oranges (BFS) today. I wrote most of the solution myself (~60%), but needed some guidance to fix the BFS logic and boundary handling.  #100DaysOfCode #LeetCode #DSA #codingjourney

Day 52 of #LeetCode75 — Problem 547: Number of Provinces Converted the adjacency matrix into an adjacency list and used DFS to count connected components. Each DFS run = one province. TC: O(n²) SC: O(n) #Day52 #LeetCode #DSA #CPP #CodingJourney

ANNISH_SEN's tweet image. Day 52 of #LeetCode75 — Problem 547: Number of Provinces

Converted the adjacency matrix into an adjacency list and used DFS to count connected components.
Each DFS run = one province.
TC: O(n²)
 SC: O(n)

#Day52 #LeetCode #DSA #CPP #CodingJourney
ANNISH_SEN's tweet image. Day 52 of #LeetCode75 — Problem 547: Number of Provinces

Converted the adjacency matrix into an adjacency list and used DFS to count connected components.
Each DFS run = one province.
TC: O(n²)
 SC: O(n)

#Day52 #LeetCode #DSA #CPP #CodingJourney

Day #66 Update: - DevOps - Continuing on the Project - LeetCode: Two Coding Problems from Blind 75 #100DaysOfCode #CodinChallenge #leetcode75 #LeetCode #DSA

_Tharun_G's tweet image. Day #66 Update:
- DevOps - Continuing on the Project
- LeetCode: Two Coding Problems from Blind 75
#100DaysOfCode #CodinChallenge #leetcode75 #LeetCode #DSA

1207. Unique number of Occurrences. Leetcode problem solution using Golang. #Leetcode75 #Golang

the_code_club's tweet image. 1207. Unique number of Occurrences.

Leetcode problem solution using Golang.

#Leetcode75 #Golang

Day 54 of #LeetCode75 — Problem2336: Smallest Number in Infinite Set This one was tricky, learned it with help and understood the logic behind maintaining: A pointer (cur) to the next smallest number A min-heap to store numbers that were added back #Day54 #LeetCode #DSA #CPP

ANNISH_SEN's tweet image. Day 54 of #LeetCode75 — Problem2336: Smallest Number in Infinite Set

This one was tricky, learned it with help and understood the logic behind maintaining:

A pointer (cur) to the next smallest number
A min-heap to store numbers that were added back

#Day54 #LeetCode #DSA #CPP

Day 69 of #LeetCode75 – Problem 790 (Domino & Tromino Tiling) Today learned the DP + recurrence relation approach. Interesting formula: T(n) = 2·T(n-1) + T(n-3) Slowly understanding these DP patterns. #DSA #DynamicProgramming #100DaysOfCode #CodingJourney

ANNISH_SEN's tweet image. Day 69 of #LeetCode75 – Problem 790 (Domino & Tromino Tiling)
Today  learned the DP + recurrence relation approach.
Interesting formula:
T(n) = 2·T(n-1) + T(n-3)
Slowly understanding these DP patterns. 
#DSA #DynamicProgramming #100DaysOfCode #CodingJourney

Binary Tree - DFS Leaf-Similar Trees #LeetCode75 34/75 #Python #DSA #100DaysOfCode #LeetCode

Priyansh0310's tweet image. Binary Tree - DFS  
Leaf-Similar Trees #LeetCode75        

34/75       

#Python #DSA #100DaysOfCode #LeetCode
Priyansh0310's tweet image. Binary Tree - DFS  
Leaf-Similar Trees #LeetCode75        

34/75       

#Python #DSA #100DaysOfCode #LeetCode

Day 46 of #LeetCode75 Challenge Problem #334 (Increasing Triplet Subsequence) Used a greedy approach with two variables tracking smallest and second-smallest elements to detect an increasing triplet. Time: O(n) Space: O(1) #Day46 #LeetCode #100DaysOfCode #DSA #CPlusPlus #Coding

ANNISH_SEN's tweet image. Day 46 of #LeetCode75 Challenge Problem #334 (Increasing Triplet Subsequence)
Used a greedy approach with two variables tracking smallest and second-smallest elements to detect an increasing triplet.
Time: O(n)
Space: O(1)

#Day46 #LeetCode #100DaysOfCode #DSA #CPlusPlus #Coding
ANNISH_SEN's tweet image. Day 46 of #LeetCode75 Challenge Problem #334 (Increasing Triplet Subsequence)
Used a greedy approach with two variables tracking smallest and second-smallest elements to detect an increasing triplet.
Time: O(n)
Space: O(1)

#Day46 #LeetCode #100DaysOfCode #DSA #CPlusPlus #Coding

Day 63 of #LeetCode75 Solved Koko Eating Bananas using Binary Search Key ideas I learned: 🔸 Binary search on answer space 🔸 Checking feasibility with a helper function 🔸 Ceiling division trick for hours 🔸 Minimizing speed while staying within time limit

ANNISH_SEN's tweet image. Day 63 of #LeetCode75

Solved Koko Eating Bananas  using Binary Search 

Key ideas I learned:
🔸 Binary search on answer space
🔸 Checking feasibility with a helper function
🔸 Ceiling division trick for hours
🔸 Minimizing speed while staying within time limit

Linked List Question. Reverse Linked List #LeetCode75 32/75 #Python #DSA #100DaysOfCode #LeetCode

Priyansh0310's tweet image. Linked List Question.    
Reverse Linked List  #LeetCode75     

32/75   

#Python #DSA #100DaysOfCode #LeetCode
Priyansh0310's tweet image. Linked List Question.    
Reverse Linked List  #LeetCode75     

32/75   

#Python #DSA #100DaysOfCode #LeetCode

Binary Tree - DFS Maximum Depth of Binary Tree #LeetCode75 33/75 #Python #DSA #100DaysOfCode #LeetCode

Priyansh0310's tweet image. Binary Tree - DFS 
Maximum Depth of Binary Tree #LeetCode75      

33/75     

#Python #DSA #100DaysOfCode #LeetCode
Priyansh0310's tweet image. Binary Tree - DFS 
Maximum Depth of Binary Tree #LeetCode75      

33/75     

#Python #DSA #100DaysOfCode #LeetCode

Day 48 of #LeetCode75 Challenge: Decode String I explored a stack-based solution in C++ to handle nested brackets and repeated strings. Learned how to manage numbers and strings with stacks Great practice for understanding string & stack logic #100DaysOfCode #DSA #CodingJourney

ANNISH_SEN's tweet image. Day 48 of #LeetCode75 Challenge: Decode String

I explored a stack-based solution in C++ to handle nested brackets and repeated strings.
Learned how to manage numbers and strings with stacks
Great practice for understanding string & stack logic

#100DaysOfCode #DSA #CodingJourney
ANNISH_SEN's tweet image. Day 48 of #LeetCode75 Challenge: Decode String

I explored a stack-based solution in C++ to handle nested brackets and repeated strings.
Learned how to manage numbers and strings with stacks
Great practice for understanding string & stack logic

#100DaysOfCode #DSA #CodingJourney
ANNISH_SEN's tweet image. Day 48 of #LeetCode75 Challenge: Decode String

I explored a stack-based solution in C++ to handle nested brackets and repeated strings.
Learned how to manage numbers and strings with stacks
Great practice for understanding string & stack logic

#100DaysOfCode #DSA #CodingJourney

Binary Tree - BFS Binary Tree Right Side View #LeetCode75 39/75 #Python #DSA #100DaysOfCode #LeetCode

Priyansh0310's tweet image. Binary Tree - BFS      
Binary Tree Right Side View #LeetCode75                  

39/75                 

#Python #DSA #100DaysOfCode #LeetCode
Priyansh0310's tweet image. Binary Tree - BFS      
Binary Tree Right Side View #LeetCode75                  

39/75                 

#Python #DSA #100DaysOfCode #LeetCode

🚀 Day 1 of my LeetCode 75 Challenge begins today! Just solved the first problem — #1768: Merge Strings Alternately ✅ One step closer to sharpening my DSA skills 💪 Consistency > Motivation. Let’s keep going! 🔥 #LeetCode #LeetCode75 #CodingJourney #100DaysOfCode

JashanMaan81547's tweet image. 🚀 Day 1 of my LeetCode 75 Challenge begins today!

Just solved the first problem — #1768: Merge Strings Alternately ✅

One step closer to sharpening my DSA skills 💪
Consistency > Motivation. Let’s keep going! 🔥

#LeetCode #LeetCode75 #CodingJourney #100DaysOfCode
JashanMaan81547's tweet image. 🚀 Day 1 of my LeetCode 75 Challenge begins today!

Just solved the first problem — #1768: Merge Strings Alternately ✅

One step closer to sharpening my DSA skills 💪
Consistency > Motivation. Let’s keep going! 🔥

#LeetCode #LeetCode75 #CodingJourney #100DaysOfCode
JashanMaan81547's tweet image. 🚀 Day 1 of my LeetCode 75 Challenge begins today!

Just solved the first problem — #1768: Merge Strings Alternately ✅

One step closer to sharpening my DSA skills 💪
Consistency > Motivation. Let’s keep going! 🔥

#LeetCode #LeetCode75 #CodingJourney #100DaysOfCode

Loading...

Something went wrong.


Something went wrong.


United States Trends