Skip to content

Commit 16209ef

Browse files
authored
Fixing the sorting order example in the instructions.md for the remote-controlcompetition exercise (#2746)
1 parent 725dcbe commit 16209ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/concept/remote-control-competition/.docs/instructions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ Implement the static `TestTrack.getRankedCars()` to return the cars passed in, s
5959
```java
6060
ProductionRemoteControlCar prc1 = new ProductionRemoteControlCar();
6161
ProductionRemoteControlCar prc2 = new ProductionRemoteControlCar();
62-
prc1.setNumberOfVictories(3);
63-
prc2.setNumberOfVictories(2);
62+
prc1.setNumberOfVictories(2);
63+
prc2.setNumberOfVictories(3);
6464
List<ProductionRemoteControlCar> unsortedCars = new ArrayList<>();
6565
unsortedCars.add(prc1);
6666
unsortedCars.add(prc2);

0 commit comments

Comments
 (0)