Sha256: c523f5bafa30e11173835b960c1d88d5a708b6dcab5c0a6054d6ac31c83987c7
Contents?: true
Size: 741 Bytes
Versions: 253
Compression:
Stored size: 741 Bytes
Contents
using System; using System.Collections.Generic; using System.Linq; public enum Color { Red , Green , Ivory , Yellow , Blue } public enum Nationality { Englishman , Spaniard , Ukranian , Japanese , Norwegian } public enum Pet { Dog , Snails , Fox , Horse , Zebra } public enum Drink { Coffee , Tea , Milk , OrangeJuice , Water } public enum Smoke { OldGold , Kools , Chesterfields , LuckyStrike , Parliaments } public static class ZebraPuzzle { public static Nationality WhoDrinks(Drink drink) { throw new NotImplementedException("You need to implement this function."); } public static Nationality WhoOwns(Pet pet) { throw new NotImplementedException("You need to implement this function."); } }
Version data entries
253 entries across 253 versions & 1 rubygems