Skip to content

Instantly share code, notes, and snippets.

View cander's full-sized avatar

Charles Anderson cander

View GitHub Profile
@cander
cander / RobotTest.cs
Created April 16, 2025 16:16
Unit test re-implementing logic
public void AssignmentExampleTest()
{
// Arrange
var robot = new SquareRobot();
var commands = new int[] { 4, 4, 3, 2, 2, 3 };
// Act
var result = robot.Move(commands);
// Assert