Sha256: 33fa4cd5e0f370c65c7a95b8dc061253ad2f5598e6a908ef472d83fbac1e6072

Contents?: true

Size: 628 Bytes

Versions: 255

Compression:

Stored size: 628 Bytes

Contents

using System;
using System.Collections.Generic;

public enum GoPlayer
{
    None,
    Black,
    White
}

public class GoCounting
{
    public GoCounting(string input)
    {
        throw new NotImplementedException("You need to implement this function.");
    }

    public Tuple<GoPlayer, IEnumerable<Tuple<int, int>>> TerritoryFor(Tuple<int, int> coord)
    {
        throw new NotImplementedException("You need to implement this function.");
    }

    public Dictionary<GoPlayer, IEnumerable<Tuple<int, int>>> Territories()
    {
        throw new NotImplementedException("You need to implement this function.");
    }
}

Version data entries

255 entries across 255 versions & 1 rubygems

Version Path
trackler-2.2.1.153 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.152 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.151 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.150 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.149 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.148 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.147 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.146 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.145 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.144 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.143 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.142 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.141 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.140 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.139 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.138 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.137 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.136 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.135 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.134 tracks/csharp/exercises/go-counting/GoCounting.cs