Sha256: 95e85ca31c990b7198e5504c8975c49bf07d6a87745f08fcf125f32eee221435
Contents?: true
Size: 634 Bytes
Versions: 26
Compression:
Stored size: 634 Bytes
Contents
using System; using System.Collections.Generic; public enum Owner { None, Black, White } public class GoCounting { public GoCounting(string input) { throw new NotImplementedException("You need to implement this function."); } public Tuple<Owner, IEnumerable<ValueTuple<int, int>>> TerritoryFor(ValueTuple<int, int> coord) { throw new NotImplementedException("You need to implement this function."); } public Dictionary<Owner, IEnumerable<ValueTuple<int, int>>> Territories() { throw new NotImplementedException("You need to implement this function."); } }
Version data entries
26 entries across 26 versions & 1 rubygems