C# 14 - New Features
12 AprENC#.NETStay aware of the latest updates for C#
Graphs - Topological Sorting
24 MarPTAlgorithms & Data StructuresGraphsIdeal for solving tasks with dependencies, this technique organizes processes in acyclic graphs and is used in compilers, planners, and more. Learn how Kahn's and DFS-based algorithms make it possible to achieve a topological order
Graphs - Tips and Tricks
3 MarPTAlgorithms & Data StructuresGraphsDiscover tips and tricks to master graphs and improve your algorithms in solving complex problems in a practical and efficient way
A* Algorithm
16 FebPTAlgorithms & Data StructuresGraphsThe A algorithm (A-Star) is an efficient approach to finding the shortest path in graphs, combining heuristics and actual cost. Used in games, AI, and navigation, it guarantees optimal solutions when the heuristic is well-defined
Custom Metrics in .NET
15 FebEN.NETObservabilityLearn how to implement custom .NET metrics. Counters, UpDownCounters, Gauges, and Histograms, to enhance observability in your applications.