Sha256: 918e62b196de397072ced0e58c068464202f25f87ba71dd5406222c0b1c648fd
Contents?: true
Size: 533 Bytes
Versions: 154
Compression:
Stored size: 533 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 QueenAttack { public static bool CanAttack(Queen white, Queen black) { throw new NotImplementedException("You need to implement this function."); } public static Queen Create(int row, int column) { throw new NotImplementedException("You need to implement this function."); } }
Version data entries
154 entries across 154 versions & 1 rubygems