Solving the Towers of Hanoi puzzle in C#
I thought this would be a fun little exercise to try. This puzzle is generally used to teach recursion in CS classes, but I have never actually tried to implement it.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace TowersOfHanoiCs
{
class Program
{
static List […]