Skip to content

Commit

Permalink
Remove unnecessary comment
Browse files Browse the repository at this point in the history
Co-authored-by: Erik Schierboom <erik_schierboom@hotmail.com>
  • Loading branch information
cizra and ErikSchierboom committed Aug 28, 2024
1 parent 3f11ba5 commit 259f17d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions exercises/concept/land-grab-in-space/LandGrabInSpaceTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,7 @@ public void GetLongestSideReverseInsertionOrder()
public void GetLongestSideDiagonal1()
{
var ch = new ClaimsHandler();
// Bottom left, bottom right, top left, top right. The longest side is 10, diagonal is >14
var shorter = CreatePlot(new Coord(0, 0), new Coord(0, 10), new Coord(10, 0), new Coord(10, 10));
// Bottom left, top left, top right, bottom right, longest side 11
var longer = CreatePlot(new Coord(0, 0), new Coord(11, 0), new Coord(11, 11), new Coord(0, 11));
ch.StakeClaim(shorter);
ch.StakeClaim(longer);
Expand Down

0 comments on commit 259f17d

Please sign in to comment.