#matrixtraversal search results

๐ŸŠ #GFG160 โ€“ Day 110: Rotten Oranges โ€“ BFS in Action! ๐Ÿงƒโณ Solved the classic Rotten Oranges problem using multi-source BFS! #MatrixTraversal #GeeksforGeeks #100DaysOfCode #geekstreak2025 @geeksforgeeks

YojitKataria's tweet image. ๐ŸŠ #GFG160 โ€“ Day 110: Rotten Oranges โ€“ BFS in Action! ๐Ÿงƒโณ
Solved the classic Rotten Oranges problem using multi-source BFS!
 #MatrixTraversal #GeeksforGeeks #100DaysOfCode #geekstreak2025
@geeksforgeeks
YojitKataria's tweet image. ๐ŸŠ #GFG160 โ€“ Day 110: Rotten Oranges โ€“ BFS in Action! ๐Ÿงƒโณ
Solved the classic Rotten Oranges problem using multi-source BFS!
 #MatrixTraversal #GeeksforGeeks #100DaysOfCode #geekstreak2025
@geeksforgeeks

๐Ÿš€ #GFG160 โ€“ Day 32: Spiral Mode On! ๐Ÿ”„๐ŸŒ€ Solved the Spirally Traversing a Matrix problem today โ€” navigating through layers like a pro! โœ”๏ธ Spirally Traversing a Matrix #MatrixTraversal #Simulation #ArrayProblems #GeeksforGeeks #100DaysOfCode #geekstreak2025 @geeksforgeeks

YojitKataria's tweet image. ๐Ÿš€ #GFG160 โ€“ Day 32: Spiral Mode On! ๐Ÿ”„๐ŸŒ€
Solved the Spirally Traversing a Matrix problem today โ€” navigating through layers like a pro!
โœ”๏ธ Spirally Traversing a Matrix
#MatrixTraversal #Simulation #ArrayProblems #GeeksforGeeks #100DaysOfCode #geekstreak2025
@geeksforgeeks

โœ… Diagonal Traverse Approach 1: Simulate diagonal movement + direction changes Approach 2: Group by diagonal (i+j sum) + reverse alternates Simulation vs Math! ๐Ÿงฎ๐Ÿ”ฅ #LeetCode #100DaysOfCode #MatrixTraversal

me_sajeeb's tweet image. โœ… Diagonal Traverse

Approach 1: Simulate diagonal movement + direction changes Approach 2: Group by diagonal (i+j sum) + reverse alternates

Simulation vs Math! ๐Ÿงฎ๐Ÿ”ฅ

#LeetCode #100DaysOfCode #MatrixTraversal
me_sajeeb's tweet image. โœ… Diagonal Traverse

Approach 1: Simulate diagonal movement + direction changes Approach 2: Group by diagonal (i+j sum) + reverse alternates

Simulation vs Math! ๐Ÿงฎ๐Ÿ”ฅ

#LeetCode #100DaysOfCode #MatrixTraversal

Problem 36/160: Spirally Traversing a Matrix ๐ŸŒ€ Traversing boundaries step by step simplifies the matrix spiral. Complexity: O(n ร— m). A great problem to practice matrix manipulation! #geekstreak2024 #gfg160 @geeksforgeeks #MatrixTraversal #DSA #CodingChallenge

Harsh_Codes_369's tweet image. Problem 36/160: Spirally Traversing a Matrix ๐ŸŒ€ Traversing boundaries step by step simplifies the matrix spiral. Complexity: O(n ร— m). A great problem to practice matrix manipulation!

#geekstreak2024 #gfg160 @geeksforgeeks #MatrixTraversal #DSA #CodingChallenge

๐Ÿ“œ Day 36 of #gfg160 Cracked โ€œSpirally Traversing a Matrixโ€ ๐ŸŒ€ using boundary tracking (top, bottom, left, right) ๐Ÿ” Clean 4-pointer logic to glide through each layer like a boss ๐Ÿ’ป Thanks @geeksforgeeks ๐Ÿ™Œ #JavaMode #MatrixTraversal #geekstreak2025 #DSA

sapfire955's tweet image. ๐Ÿ“œ Day 36 of #gfg160 
Cracked โ€œSpirally Traversing a Matrixโ€ ๐ŸŒ€ using boundary tracking (top, bottom, left, right) ๐Ÿ”
Clean 4-pointer logic to glide through each layer like a boss ๐Ÿ’ป
Thanks @geeksforgeeks  ๐Ÿ™Œ
#JavaMode #MatrixTraversal #geekstreak2025  #DSA

Day 36 of #gfg160 #geekstreak2025 Solved the Spiral Matrix Traversal problem today ๐ŸŒ€ Implemented a clean boundary-tracking approach โ€” top, bottom, left, right โ€” and moved layer by layer inward. #MatrixTraversal #SpiralOrder #DSAChallenge #GFG160 #GeekStreak2025

KrakenNakul's tweet image. Day 36 of #gfg160 #geekstreak2025
Solved the Spiral Matrix Traversal problem today ๐ŸŒ€
Implemented a clean boundary-tracking approach โ€” top, bottom, left, right โ€” and moved layer by layer inward.
#MatrixTraversal #SpiralOrder #DSAChallenge #GFG160 #GeekStreak2025
KrakenNakul's tweet image. Day 36 of #gfg160 #geekstreak2025
Solved the Spiral Matrix Traversal problem today ๐ŸŒ€
Implemented a clean boundary-tracking approach โ€” top, bottom, left, right โ€” and moved layer by layer inward.
#MatrixTraversal #SpiralOrder #DSAChallenge #GFG160 #GeekStreak2025

Day 40 of #160DaysOfCode โœ… with @geeksforgeeks Cracked the Search in a Sorted Matrix problem today! ๐Ÿ” Leveraged the top-right corner approach to smartly reduce the search space โ€” achieving O(n + m) time complexity! ๐Ÿš€๐Ÿ“‰ #GFGDailyChallenge #MatrixTraversal #OptimizedSearch

rajbaibhav004's tweet image. Day 40 of #160DaysOfCode โœ… with @geeksforgeeks

Cracked the Search in a Sorted Matrix problem today! ๐Ÿ”
Leveraged the top-right corner approach to smartly reduce the search space โ€”
achieving O(n + m) time complexity! ๐Ÿš€๐Ÿ“‰

#GFGDailyChallenge #MatrixTraversal #OptimizedSearch

Day 36 of GfG 160 Days Challenge 2025 Solved ๐Ÿ”„ "Spirally Traversing a Matrix" ๐Ÿ’ก Used four boundaries (top, bottom, left, right) to systematically traverse the matrix in spiral order Tagging @geeksforgeeks #gfg160 #geekstreak2025 #MatrixTraversal #SpiralOrder #DSA

MamidiTeja1913's tweet image. Day 36 of GfG 160 Days Challenge 2025
Solved ๐Ÿ”„ "Spirally Traversing a Matrix"
๐Ÿ’ก Used four boundaries (top, bottom, left, right) to systematically traverse the matrix in spiral order
Tagging @geeksforgeeks
#gfg160 #geekstreak2025 #MatrixTraversal #SpiralOrder #DSA

โœ… Diagonal Traverse Approach 1: Simulate diagonal movement + direction changes Approach 2: Group by diagonal (i+j sum) + reverse alternates Simulation vs Math! ๐Ÿงฎ๐Ÿ”ฅ #LeetCode #100DaysOfCode #MatrixTraversal

me_sajeeb's tweet image. โœ… Diagonal Traverse

Approach 1: Simulate diagonal movement + direction changes Approach 2: Group by diagonal (i+j sum) + reverse alternates

Simulation vs Math! ๐Ÿงฎ๐Ÿ”ฅ

#LeetCode #100DaysOfCode #MatrixTraversal
me_sajeeb's tweet image. โœ… Diagonal Traverse

Approach 1: Simulate diagonal movement + direction changes Approach 2: Group by diagonal (i+j sum) + reverse alternates

Simulation vs Math! ๐Ÿงฎ๐Ÿ”ฅ

#LeetCode #100DaysOfCode #MatrixTraversal

๐ŸŠ #GFG160 โ€“ Day 110: Rotten Oranges โ€“ BFS in Action! ๐Ÿงƒโณ Solved the classic Rotten Oranges problem using multi-source BFS! #MatrixTraversal #GeeksforGeeks #100DaysOfCode #geekstreak2025 @geeksforgeeks

YojitKataria's tweet image. ๐ŸŠ #GFG160 โ€“ Day 110: Rotten Oranges โ€“ BFS in Action! ๐Ÿงƒโณ
Solved the classic Rotten Oranges problem using multi-source BFS!
 #MatrixTraversal #GeeksforGeeks #100DaysOfCode #geekstreak2025
@geeksforgeeks
YojitKataria's tweet image. ๐ŸŠ #GFG160 โ€“ Day 110: Rotten Oranges โ€“ BFS in Action! ๐Ÿงƒโณ
Solved the classic Rotten Oranges problem using multi-source BFS!
 #MatrixTraversal #GeeksforGeeks #100DaysOfCode #geekstreak2025
@geeksforgeeks

Day 36 of #gfg160 #geekstreak2025 Solved the Spiral Matrix Traversal problem today ๐ŸŒ€ Implemented a clean boundary-tracking approach โ€” top, bottom, left, right โ€” and moved layer by layer inward. #MatrixTraversal #SpiralOrder #DSAChallenge #GFG160 #GeekStreak2025

KrakenNakul's tweet image. Day 36 of #gfg160 #geekstreak2025
Solved the Spiral Matrix Traversal problem today ๐ŸŒ€
Implemented a clean boundary-tracking approach โ€” top, bottom, left, right โ€” and moved layer by layer inward.
#MatrixTraversal #SpiralOrder #DSAChallenge #GFG160 #GeekStreak2025
KrakenNakul's tweet image. Day 36 of #gfg160 #geekstreak2025
Solved the Spiral Matrix Traversal problem today ๐ŸŒ€
Implemented a clean boundary-tracking approach โ€” top, bottom, left, right โ€” and moved layer by layer inward.
#MatrixTraversal #SpiralOrder #DSAChallenge #GFG160 #GeekStreak2025

๐Ÿš€ #GFG160 โ€“ Day 32: Spiral Mode On! ๐Ÿ”„๐ŸŒ€ Solved the Spirally Traversing a Matrix problem today โ€” navigating through layers like a pro! โœ”๏ธ Spirally Traversing a Matrix #MatrixTraversal #Simulation #ArrayProblems #GeeksforGeeks #100DaysOfCode #geekstreak2025 @geeksforgeeks

YojitKataria's tweet image. ๐Ÿš€ #GFG160 โ€“ Day 32: Spiral Mode On! ๐Ÿ”„๐ŸŒ€
Solved the Spirally Traversing a Matrix problem today โ€” navigating through layers like a pro!
โœ”๏ธ Spirally Traversing a Matrix
#MatrixTraversal #Simulation #ArrayProblems #GeeksforGeeks #100DaysOfCode #geekstreak2025
@geeksforgeeks

๐Ÿ“œ Day 36 of #gfg160 Cracked โ€œSpirally Traversing a Matrixโ€ ๐ŸŒ€ using boundary tracking (top, bottom, left, right) ๐Ÿ” Clean 4-pointer logic to glide through each layer like a boss ๐Ÿ’ป Thanks @geeksforgeeks ๐Ÿ™Œ #JavaMode #MatrixTraversal #geekstreak2025 #DSA

sapfire955's tweet image. ๐Ÿ“œ Day 36 of #gfg160 
Cracked โ€œSpirally Traversing a Matrixโ€ ๐ŸŒ€ using boundary tracking (top, bottom, left, right) ๐Ÿ”
Clean 4-pointer logic to glide through each layer like a boss ๐Ÿ’ป
Thanks @geeksforgeeks  ๐Ÿ™Œ
#JavaMode #MatrixTraversal #geekstreak2025  #DSA

Day 214 - Daily Problem Solving ๐Ÿ”น #gfg160 Day 150: Flood Fill Algorithm โœ… ๐Ÿ“Œ Simulated the classic paint fill tool using DFS/BFS. #FloodFill #MatrixTraversal #DFS #BFS #gfg160 #100DaysOfCode #DSA #CPP #geekstreak2024 @geeksforgeeks

SatyamG21400517's tweet image. Day 214 - Daily Problem Solving
๐Ÿ”น #gfg160 Day 150: Flood Fill Algorithm โœ…
๐Ÿ“Œ Simulated the classic paint fill tool using DFS/BFS.

#FloodFill #MatrixTraversal #DFS #BFS #gfg160 #100DaysOfCode #DSA #CPP #geekstreak2024
@geeksforgeeks
SatyamG21400517's tweet image. Day 214 - Daily Problem Solving
๐Ÿ”น #gfg160 Day 150: Flood Fill Algorithm โœ…
๐Ÿ“Œ Simulated the classic paint fill tool using DFS/BFS.

#FloodFill #MatrixTraversal #DFS #BFS #gfg160 #100DaysOfCode #DSA #CPP #geekstreak2024
@geeksforgeeks

Problem 36/160: Spirally Traversing a Matrix ๐ŸŒ€ Traversing boundaries step by step simplifies the matrix spiral. Complexity: O(n ร— m). A great problem to practice matrix manipulation! #geekstreak2024 #gfg160 @geeksforgeeks #MatrixTraversal #DSA #CodingChallenge

Harsh_Codes_369's tweet image. Problem 36/160: Spirally Traversing a Matrix ๐ŸŒ€ Traversing boundaries step by step simplifies the matrix spiral. Complexity: O(n ร— m). A great problem to practice matrix manipulation!

#geekstreak2024 #gfg160 @geeksforgeeks #MatrixTraversal #DSA #CodingChallenge

No results for "#matrixtraversal"

๐ŸŠ #GFG160 โ€“ Day 110: Rotten Oranges โ€“ BFS in Action! ๐Ÿงƒโณ Solved the classic Rotten Oranges problem using multi-source BFS! #MatrixTraversal #GeeksforGeeks #100DaysOfCode #geekstreak2025 @geeksforgeeks

YojitKataria's tweet image. ๐ŸŠ #GFG160 โ€“ Day 110: Rotten Oranges โ€“ BFS in Action! ๐Ÿงƒโณ
Solved the classic Rotten Oranges problem using multi-source BFS!
 #MatrixTraversal #GeeksforGeeks #100DaysOfCode #geekstreak2025
@geeksforgeeks
YojitKataria's tweet image. ๐ŸŠ #GFG160 โ€“ Day 110: Rotten Oranges โ€“ BFS in Action! ๐Ÿงƒโณ
Solved the classic Rotten Oranges problem using multi-source BFS!
 #MatrixTraversal #GeeksforGeeks #100DaysOfCode #geekstreak2025
@geeksforgeeks

๐Ÿš€ #GFG160 โ€“ Day 32: Spiral Mode On! ๐Ÿ”„๐ŸŒ€ Solved the Spirally Traversing a Matrix problem today โ€” navigating through layers like a pro! โœ”๏ธ Spirally Traversing a Matrix #MatrixTraversal #Simulation #ArrayProblems #GeeksforGeeks #100DaysOfCode #geekstreak2025 @geeksforgeeks

YojitKataria's tweet image. ๐Ÿš€ #GFG160 โ€“ Day 32: Spiral Mode On! ๐Ÿ”„๐ŸŒ€
Solved the Spirally Traversing a Matrix problem today โ€” navigating through layers like a pro!
โœ”๏ธ Spirally Traversing a Matrix
#MatrixTraversal #Simulation #ArrayProblems #GeeksforGeeks #100DaysOfCode #geekstreak2025
@geeksforgeeks

Problem 36/160: Spirally Traversing a Matrix ๐ŸŒ€ Traversing boundaries step by step simplifies the matrix spiral. Complexity: O(n ร— m). A great problem to practice matrix manipulation! #geekstreak2024 #gfg160 @geeksforgeeks #MatrixTraversal #DSA #CodingChallenge

Harsh_Codes_369's tweet image. Problem 36/160: Spirally Traversing a Matrix ๐ŸŒ€ Traversing boundaries step by step simplifies the matrix spiral. Complexity: O(n ร— m). A great problem to practice matrix manipulation!

#geekstreak2024 #gfg160 @geeksforgeeks #MatrixTraversal #DSA #CodingChallenge

โœ… Diagonal Traverse Approach 1: Simulate diagonal movement + direction changes Approach 2: Group by diagonal (i+j sum) + reverse alternates Simulation vs Math! ๐Ÿงฎ๐Ÿ”ฅ #LeetCode #100DaysOfCode #MatrixTraversal

me_sajeeb's tweet image. โœ… Diagonal Traverse

Approach 1: Simulate diagonal movement + direction changes Approach 2: Group by diagonal (i+j sum) + reverse alternates

Simulation vs Math! ๐Ÿงฎ๐Ÿ”ฅ

#LeetCode #100DaysOfCode #MatrixTraversal
me_sajeeb's tweet image. โœ… Diagonal Traverse

Approach 1: Simulate diagonal movement + direction changes Approach 2: Group by diagonal (i+j sum) + reverse alternates

Simulation vs Math! ๐Ÿงฎ๐Ÿ”ฅ

#LeetCode #100DaysOfCode #MatrixTraversal

๐Ÿ“œ Day 36 of #gfg160 Cracked โ€œSpirally Traversing a Matrixโ€ ๐ŸŒ€ using boundary tracking (top, bottom, left, right) ๐Ÿ” Clean 4-pointer logic to glide through each layer like a boss ๐Ÿ’ป Thanks @geeksforgeeks ๐Ÿ™Œ #JavaMode #MatrixTraversal #geekstreak2025 #DSA

sapfire955's tweet image. ๐Ÿ“œ Day 36 of #gfg160 
Cracked โ€œSpirally Traversing a Matrixโ€ ๐ŸŒ€ using boundary tracking (top, bottom, left, right) ๐Ÿ”
Clean 4-pointer logic to glide through each layer like a boss ๐Ÿ’ป
Thanks @geeksforgeeks  ๐Ÿ™Œ
#JavaMode #MatrixTraversal #geekstreak2025  #DSA

Day 36 of #gfg160 #geekstreak2025 Solved the Spiral Matrix Traversal problem today ๐ŸŒ€ Implemented a clean boundary-tracking approach โ€” top, bottom, left, right โ€” and moved layer by layer inward. #MatrixTraversal #SpiralOrder #DSAChallenge #GFG160 #GeekStreak2025

KrakenNakul's tweet image. Day 36 of #gfg160 #geekstreak2025
Solved the Spiral Matrix Traversal problem today ๐ŸŒ€
Implemented a clean boundary-tracking approach โ€” top, bottom, left, right โ€” and moved layer by layer inward.
#MatrixTraversal #SpiralOrder #DSAChallenge #GFG160 #GeekStreak2025
KrakenNakul's tweet image. Day 36 of #gfg160 #geekstreak2025
Solved the Spiral Matrix Traversal problem today ๐ŸŒ€
Implemented a clean boundary-tracking approach โ€” top, bottom, left, right โ€” and moved layer by layer inward.
#MatrixTraversal #SpiralOrder #DSAChallenge #GFG160 #GeekStreak2025

Day 40 of #160DaysOfCode โœ… with @geeksforgeeks Cracked the Search in a Sorted Matrix problem today! ๐Ÿ” Leveraged the top-right corner approach to smartly reduce the search space โ€” achieving O(n + m) time complexity! ๐Ÿš€๐Ÿ“‰ #GFGDailyChallenge #MatrixTraversal #OptimizedSearch

rajbaibhav004's tweet image. Day 40 of #160DaysOfCode โœ… with @geeksforgeeks

Cracked the Search in a Sorted Matrix problem today! ๐Ÿ”
Leveraged the top-right corner approach to smartly reduce the search space โ€”
achieving O(n + m) time complexity! ๐Ÿš€๐Ÿ“‰

#GFGDailyChallenge #MatrixTraversal #OptimizedSearch

Day 36 of GfG 160 Days Challenge 2025 Solved ๐Ÿ”„ "Spirally Traversing a Matrix" ๐Ÿ’ก Used four boundaries (top, bottom, left, right) to systematically traverse the matrix in spiral order Tagging @geeksforgeeks #gfg160 #geekstreak2025 #MatrixTraversal #SpiralOrder #DSA

MamidiTeja1913's tweet image. Day 36 of GfG 160 Days Challenge 2025
Solved ๐Ÿ”„ "Spirally Traversing a Matrix"
๐Ÿ’ก Used four boundaries (top, bottom, left, right) to systematically traverse the matrix in spiral order
Tagging @geeksforgeeks
#gfg160 #geekstreak2025 #MatrixTraversal #SpiralOrder #DSA

Loading...

Something went wrong.


Something went wrong.


United States Trends