Sha256: cc37e010cf222b1c442970b66709bfe544e7280df3378d9f83db9e7bc5c7332d
Contents?: true
Size: 380 Bytes
Versions: 127
Compression:
Stored size: 380 Bytes
Contents
using System; public class Queen { public Queen(int row, int column) { Row = row; Column = column; } public int Row { get; } public int Column { get; } } public static class Queens { public static bool CanAttack(Queen white, Queen black) { throw new NotImplementedException("You need to implement this function."); } }
Version data entries
127 entries across 127 versions & 1 rubygems