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.72 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.71 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.70 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.69 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.68 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.67 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.66 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.65 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.64 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.63 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.62 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.61 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.60 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.59 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.58 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.57 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.56 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.55 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.54 tracks/csharp/exercises/go-counting/GoCounting.cs
trackler-2.2.1.53 tracks/csharp/exercises/go-counting/GoCounting.cs