Algorithms and Quizzes with C#

Hello guys! Let's entertain ourselves with some quizzes, that might not be so frequently used in everyday engineering! Just for fun!


Articles:
Find shortest path (Breadth-First Search)

Are there way too many options? You can easily find the answer by memory or just observation? No worries at all! Let's open our IDE and write a function for it!

View

Dijkstra's Algorithm, because weight matters!

If you have a positive way of thinking (weights) then search no more! Thanks to Dijkstra we can now schedule ahead and estimate the lighter path! 🚀👌➕

View

Bellman-Ford, negative weight search

Not everything has a positive sign in life! But hey! This is actually a good thing! Let's turn the negative into a positive situation for us!🚀👌➖

View

Fibonacci Series! These numbers are so cool!

They are everywhere! How cool is that right?! Let's try to have some fun with Fibonacci series, how we can create them, pick them out of the crowd!🔢➕

View

Quizzes with C#

Some random quizzes to get familiar with the C# syntax.

View

Concurrency Lazy Task and Async/Await

Concurrent implementation while avoiding pitfalls :D

View

Concurrent, Lazy, Redis, Cache

Let's use concurrency with Lazy, caching and Redis without having to worry about large data spikes!

View