Posted on October 9, 2007 by Adam Esterline
My quest to take a “deep dive” into C# has led me to this variation on the ShortSet Java Puzzler. I translated the ShortSet class, described in Java Puzzlers, to C#. C# does not have a Set class, so I used List.
public class ShortList{ public static void Main(string[] [...]
Filed under: Blog | Tagged: Puzzlers, C# | 1 Comment »
Posted on October 7, 2007 by Adam Esterline
I was a Java instructor earlier in my career. The best thing about being a Java instructor is you really learn Java. I knew Java as well or better than anybody while I was teaching. I quickly learned that students ask the best questions and they forced me to [...]
Filed under: Blog | Tagged: Puzzlers, C# | 2 Comments »