-
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename `Exercise` class to `LargestSeriesProduct` (matches file name and the class name expected by the tests - in stub file - in reference solution
- Loading branch information
1 parent
a79c9b3
commit 375ce32
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
...es/practice/largest-series-product/.meta/src/reference/groovy/LargestSeriesProduct.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
exercises/practice/largest-series-product/src/main/groovy/LargestSeriesProduct.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
class Exercise { | ||
class LargestSeriesProduct { | ||
static largestProduct(digits, span) { | ||
throw new UnsupportedOperationException('Method implementation is missing') | ||
} | ||
} | ||
} |