Sha256: 08b672b78b568e3eb267b8d87fa7936533bae71d355362defef5c004ea3fef74
Contents?: true
Size: 451 Bytes
Versions: 51
Compression:
Stored size: 451 Bytes
Contents
using System; public enum YachtCategory { Ones = 1, Twos = 2, Threes = 3, Fours = 4, Fives = 5, Sixes = 6, FullHouse = 7, FourOfAKind = 8, LittleStraight = 9, BigStraight = 10, Choice = 11, Yacht = 12, } public static class YachtGame { public static int Score(int[] dice, YachtCategory category) { throw new NotImplementedException("You need to implement this function."); } }
Version data entries
51 entries across 51 versions & 1 rubygems