Stars
C# Implementation of FizzBuzz, with unit tests. FizzBuzz is a programming exercise that tasks the programmer to write a program that prints out the values from 1 to 100, except that if the number i…
C# project that implements a bare-bones linked list with a reverse method that reverses the order of elements in the list.
C# project that finds the first valid solution for how a knight should move (obeying chess laws for a knight) on a N x M chess board so that it visits each square only once and will visit all the s…
C# project that finds all the possible positions that N queens on a N x N board can occupy such that no queen can attack another queen. Differentiates between unique solutions (any reflections and …