Categories

LeetCode

Solving Valid Sudoku in C#

5 minute read

Learn how to validate a 9x9 Sudoku board efficiently by checking rows, columns, and sub-boxes using HashSets.

Solving Valid Parentheses in C#

3 minute read

Learn how to validate a string of parentheses efficiently by using a Stack and Dictionary to ensure every bracket matches correctly.

Solving Min Stack in C#

3 minute read

Learn how to design a stack that supports push, pop, top, and retrieving the minimum element in constant time using a single stack with Tuples.

Back to top ↑

Algorithms

Solving Valid Sudoku in C#

5 minute read

Learn how to validate a 9x9 Sudoku board efficiently by checking rows, columns, and sub-boxes using HashSets.

Solving Valid Parentheses in C#

3 minute read

Learn how to validate a string of parentheses efficiently by using a Stack and Dictionary to ensure every bracket matches correctly.

Solving Min Stack in C#

3 minute read

Learn how to design a stack that supports push, pop, top, and retrieving the minimum element in constant time using a single stack with Tuples.

Back to top ↑

Programming

Back to top ↑

.NET

Back to top ↑

C#

Back to top ↑

.NET C#

Back to top ↑

Docker

Back to top ↑

DevOps

Back to top ↑