Sha256: a7cdf5716f6d974a54ccf995d00ed9c83b70a7d75b2b34286e7082dbcba23ff5
Contents?: true
Size: 1.17 KB
Versions: 71
Compression:
Stored size: 1.17 KB
Contents
using System; public enum Direction { North, East, South, West } public struct Coordinate { public Coordinate(int x, int y) { X = x; Y = y; } public int X { get; } public int Y { get; } } public class RobotSimulator { public RobotSimulator(Direction direction, Coordinate coordinate) { } public Direction Direction { get { throw new NotImplementedException("You need to implement this function."); } } public Coordinate Coordinate { get { throw new NotImplementedException("You need to implement this function."); } } public void TurnRight() { throw new NotImplementedException("You need to implement this function."); } public void TurnLeft() { throw new NotImplementedException("You need to implement this function."); } public void Advance() { throw new NotImplementedException("You need to implement this function."); } public void Simulate(string instructions) { throw new NotImplementedException("You need to implement this function."); } }
Version data entries
71 entries across 71 versions & 1 rubygems