Skip to content

Commit

Permalink
Configuring config.json
Browse files Browse the repository at this point in the history
  • Loading branch information
jagdish-15 committed Jan 14, 2025
1 parent 9e47280 commit 9935ee5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions exercises/practice/two-bucket/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,16 @@
"files": {
"solution": [
"src/main/java/TwoBucket.java",
"src/main/java/Result.java"
"src/main/java/Result.java",
"src/main/java/UnreachableGoalException.java"
],
"test": [
"src/test/java/TwoBucketTest.java"
],
"example": [
".meta/src/reference/java/TwoBucket.java",
".meta/src/reference/java/Result.java"
".meta/src/reference/java/Result.java",
".meta/src/reference/java/UnreachableGoalException.java"
],
"invalidator": [
"build.gradle"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import java.util.Map;

final class TwoBucket {

private int totalMoves = Integer.MAX_VALUE;
private String finalBucket = "";
private int otherBucket = Integer.MAX_VALUE;
Expand Down

0 comments on commit 9935ee5

Please sign in to comment.