Skip to content

Commit

Permalink
Fixes a compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
meikpiep committed Jan 2, 2025
1 parent c1d12dd commit 36c5e9a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class GridSumEnforcesCageSum : HumanSolverStrategy {

grid.cages.forEach { cage ->
if (StaticSumUtils.hasStaticSum(cage, cache)) {
staticGridSum += StaticSumUtils.staticSum(grid, cage, cache)
staticGridSum += StaticSumUtils.staticSum(cage, cache)
} else if (cageWithDynamicSum == null) {
cageWithDynamicSum = cage
} else {
Expand Down

0 comments on commit 36c5e9a

Please sign in to comment.