#leetcode wyniki wyszukiwania

Brak wyników dla „#leetcode”

Solved today’s LeetCode problem 💻 Best Time to Buy and Sell Stock using Strategy a tricky-looking trading problem solved using clean prefix sum + sliding window Love when math + DSA clicks 🔥 #LeetCode #DSA #Algorithms #Java #ProblemSolving #CodingJourney #DailyCoding

BISHALM50803419's tweet image. Solved today’s LeetCode problem 💻

Best Time to Buy and Sell Stock using Strategy
a tricky-looking trading problem solved using  clean prefix sum + sliding window 
Love when math + DSA clicks 🔥
#LeetCode #DSA #Algorithms #Java #ProblemSolving #CodingJourney #DailyCoding

50 consecutive days of LeetCode. Still a long way to go—but this streak is mine. #LeetCode #50DaysOfCode #DSA #CodingJourney #Consistency #ProblemSolving #CodeEveryDay

Ojas_sinh's tweet image. 50 consecutive days of LeetCode.
Still a long way to go—but this streak is mine.

#LeetCode #50DaysOfCode #DSA #CodingJourney
#Consistency #ProblemSolving #CodeEveryDay

Day 3/100 question: 1822 The grind continues! I challenged myself to really think outside the box. To get 4 I can do: (1)4 or (1+1+1+1) or (3+1) ...the point is identifying the efficient and memory saving way to arrive at my answer. #100DaysOfCode #LeetCode

paulkinyatti's tweet image. Day 3/100
question: 1822

The grind continues! I challenged myself to really think outside the box. To get 4 I can do: (1)4 or (1+1+1+1) or (3+1) ...the point is identifying the efficient and memory saving way to arrive at my answer.
#100DaysOfCode #LeetCode

LeetCode SQL 50 – Daily Update 🚀 Solved problems 12, 13, and 14 today ✔ Total solved: 14/50 Consistency > motivation 💪 #LeetCode #SQL #Fresher #Backend #DataAnalytics

_dubey_harsh's tweet image. LeetCode SQL 50 – Daily Update 🚀

Solved problems 12, 13, and 14 today ✔
Total solved: 14/50

Consistency > motivation 💪

#LeetCode #SQL #Fresher #Backend #DataAnalytics
_dubey_harsh's tweet image. LeetCode SQL 50 – Daily Update 🚀

Solved problems 12, 13, and 14 today ✔
Total solved: 14/50

Consistency > motivation 💪

#LeetCode #SQL #Fresher #Backend #DataAnalytics
_dubey_harsh's tweet image. LeetCode SQL 50 – Daily Update 🚀

Solved problems 12, 13, and 14 today ✔
Total solved: 14/50

Consistency > motivation 💪

#LeetCode #SQL #Fresher #Backend #DataAnalytics

Day 59: Koko Eating Bananas 🍌 Approach: Binary Search on Answer Check speed → adjust range → converge to minimum Simple logic, powerful pattern ⚡ Code: github.com/anchal-dev/Lee… #LeetCode #CPP #BinarySearch #DSA #CodingLife

AnchalGupta009's tweet image. Day 59: Koko Eating Bananas 🍌
Approach: Binary Search on Answer
Check speed → adjust range → converge to minimum
Simple logic, powerful pattern ⚡
Code: github.com/anchal-dev/Lee…
#LeetCode #CPP #BinarySearch #DSA #CodingLife

Day 78/100 – #100DaysOfCode 🚀 Solved Queue Reconstruction by Height ✔ Sort by height ↓, k ↑ ✔ Insert each person at index k ✔ Taller people placed first → constraints preserved TC: O(N²) #Java #LeetCode #Greedy #Sorting

MohdHaider9603's tweet image. Day 78/100 – #100DaysOfCode 🚀

Solved Queue Reconstruction by Height

✔ Sort by height ↓, k ↑
✔ Insert each person at index k
✔ Taller people placed first → constraints preserved
TC: O(N²)
#Java #LeetCode #Greedy #Sorting

youtube.com/watch?v=qMs30u… In this video we solve LeetCode 399: “Evaluate Division” using C++ and a clean graph + DFS/BFS approach. We are given equations like a / b = k and we need to answer queries of the form x / y = ? #LEETCODE #CPP

SolutionsLan's tweet image. youtube.com/watch?v=qMs30u…
In this video we solve LeetCode 399: “Evaluate Division” using C++ and a clean graph + DFS/BFS approach.  We are given equations like a / b = k and we need to answer queries of the form x / y = ?   #LEETCODE #CPP

Day 77/100 – #100DaysOfCode 🚀 Solved Convert a Number to Hexadecimal ✔ Extract last 4 bits using & 15 ✔ Map to hex digits ✔ Use unsigned right shift (>>>) TC: O(1) #Java #LeetCode #BitManipulation

MohdHaider9603's tweet image. Day 77/100 – #100DaysOfCode 🚀

Solved Convert a Number to Hexadecimal

✔ Extract last 4 bits using & 15
✔ Map to hex digits
✔ Use unsigned right shift (>>>)
TC: O(1)
#Java #LeetCode #BitManipulation

💻 Day X | #100DaysOfCode 🚀 Interview day with HCL (On-Campus), so limited coding today 👇✅ LeetCode POTD ✅ GeeksforGeeks POTD (2 approaches) ✅ Scramble String problem (DP) ✅ Java OOPs interview revision #100DaysOfCode #LeetCode #GeeksforGeeks #DSA #Java #InterviewPreparatio

Navneet31537380's tweet image. 💻 Day X | #100DaysOfCode 🚀
Interview day with HCL (On-Campus), so limited coding today 👇✅ LeetCode POTD
✅ GeeksforGeeks POTD (2 approaches)
✅ Scramble String problem (DP)
✅ Java OOPs interview revision
#100DaysOfCode #LeetCode #GeeksforGeeks #DSA #Java
#InterviewPreparatio
Navneet31537380's tweet image. 💻 Day X | #100DaysOfCode 🚀
Interview day with HCL (On-Campus), so limited coding today 👇✅ LeetCode POTD
✅ GeeksforGeeks POTD (2 approaches)
✅ Scramble String problem (DP)
✅ Java OOPs interview revision
#100DaysOfCode #LeetCode #GeeksforGeeks #DSA #Java
#InterviewPreparatio

Day 18/180 ✅ Solved LC560 today. Not at my peak yet, but staying consistent—and that matters. #LeetCode #DSA #100DaysOfCode #Coding #Consistency

iasish77's tweet image. Day 18/180 ✅
Solved LC560 today. Not at my peak yet, but staying consistent—and that matters.
#LeetCode #DSA #100DaysOfCode #Coding #Consistency

Day 76/100 – #100DaysOfCode 🚀 Solved Sum of Left Leaves ✔ DFS traversal ✔ If node.left is a leaf → add to sum ✔ Traverse entire tree once TC: O(N) #Java #LeetCode #BinaryTree #DFS

MohdHaider9603's tweet image. Day 76/100 – #100DaysOfCode 🚀

Solved Sum of Left Leaves

✔ DFS traversal
✔ If node.left is a leaf → add to sum
✔ Traverse entire tree once
TC: O(N)
#Java #LeetCode #BinaryTree #DFS

Day 75/100 – #100DaysOfCode 🚀 Solved Frog Jump ✔ DP with map → stone → possible jump sizes ✔ From jump k, try k-1, k, k+1 ✔ If last stone reachable → true TC: O(N²) #Java #LeetCode #DP #HashMap

MohdHaider9603's tweet image. Day 75/100 – #100DaysOfCode 🚀

Solved Frog Jump

✔ DP with map → stone → possible jump sizes
✔ From jump k, try k-1, k, k+1
✔ If last stone reachable → true
TC: O(N²)
#Java #LeetCode #DP #HashMap

🚀 Day 509 & 510 of Code 🚀 Solved : ✅ 3573. Best Time to Buy and Sell Stock V ✅ 3652. Best Time to Buy and Sell Stock (Strategy-based) #Day510 #DSA #LeetCode #DynamicProgramming #GreedyAlgorithms #StockProblems #ProblemSolving

Mohd_Saqib_'s tweet image. 🚀 Day 509 & 510 of Code 🚀

Solved :

✅ 3573. Best Time to Buy and Sell Stock V

✅ 3652. Best Time to Buy and Sell Stock (Strategy-based)

#Day510 #DSA #LeetCode #DynamicProgramming #GreedyAlgorithms #StockProblems #ProblemSolving
Mohd_Saqib_'s tweet image. 🚀 Day 509 & 510 of Code 🚀

Solved :

✅ 3573. Best Time to Buy and Sell Stock V

✅ 3652. Best Time to Buy and Sell Stock (Strategy-based)

#Day510 #DSA #LeetCode #DynamicProgramming #GreedyAlgorithms #StockProblems #ProblemSolving
Mohd_Saqib_'s tweet image. 🚀 Day 509 & 510 of Code 🚀

Solved :

✅ 3573. Best Time to Buy and Sell Stock V

✅ 3652. Best Time to Buy and Sell Stock (Strategy-based)

#Day510 #DSA #LeetCode #DynamicProgramming #GreedyAlgorithms #StockProblems #ProblemSolving

Day 74/100 – #100DaysOfCode 🚀 Solved Remove K Digits ✔ Monotonic increasing stack ✔ Remove larger digits greedily ✔ Trim leading zeros at the end TC: O(N), SC: O(N) #Java #LeetCode #Stack #Greedy

MohdHaider9603's tweet image. Day 74/100 – #100DaysOfCode 🚀

Solved Remove K Digits

✔ Monotonic increasing stack
✔ Remove larger digits greedily
✔ Trim leading zeros at the end
TC: O(N), SC: O(N)
#Java #LeetCode #Stack #Greedy

Day 73/100 – #100DaysOfCode 🚀 Solved Binary Watch (LeetCode 401) ✔ Try all hour (0–11) & minute (0–59) combos ✔ Match total set bits with turnedOn ✔ Validate and format time TC: O(1) #Java #LeetCode #BitManipulation #Backtracking

MohdHaider9603's tweet image. Day 73/100 – #100DaysOfCode 🚀

Solved Binary Watch (LeetCode 401)

✔ Try all hour (0–11) & minute (0–59) combos
✔ Match total set bits with turnedOn
✔ Validate and format time
TC: O(1)
#Java #LeetCode #BitManipulation #Backtracking

Brak wyników dla „#leetcode”
Loading...

Something went wrong.


Something went wrong.


United States Trends