Skip to content

Commit 9dcb8ac

Browse files
committed
Fixed format
1 parent da733a5 commit 9dcb8ac

File tree

1 file changed

+2
-2
lines changed
  • src/main/kotlin/g3201_3300/s3283_maximum_number_of_moves_to_kill_all_pawns

1 file changed

+2
-2
lines changed

src/main/kotlin/g3201_3300/s3283_maximum_number_of_moves_to_kill_all_pawns/Solution.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class Solution {
6969
if ((mask and (1 shl j)) > 0) {
7070
result = max(
7171
result,
72-
(dp[mask xor (1 shl j)][j] + distances[i][j]),
72+
dp[mask xor (1 shl j)][j] + distances[i][j],
7373
)
7474
}
7575
}
@@ -79,7 +79,7 @@ class Solution {
7979
if ((mask and (1 shl j)) > 0) {
8080
result = min(
8181
result,
82-
(dp[mask xor (1 shl j)][j] + distances[i][j]),
82+
dp[mask xor (1 shl j)][j] + distances[i][j],
8383
)
8484
}
8585
}

0 commit comments

Comments
 (0)