Skip to content

Commit 1cb2b30

Browse files
authored
Update Solution.kt
1 parent e532422 commit 1cb2b30

File tree

1 file changed

+4
-4
lines changed
  • src/main/kotlin/g3301_3400/s3389_minimum_operations_to_make_character_frequencies_equal

1 file changed

+4
-4
lines changed

src/main/kotlin/g3301_3400/s3389_minimum_operations_to_make_character_frequencies_equal/Solution.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ class Solution {
2020
mx = max(mx, c)
2121
}
2222
if (mn == mx) return 0
23-
var dp0 : Int
24-
var dp1 : Int
25-
var tmp0 : Int
26-
var tmp1 : Int
23+
var dp0: Int
24+
var dp1: Int
25+
var tmp0: Int
26+
var tmp1: Int
2727
var ans = n - 1
2828
for (i in mn..mx) {
2929
dp0 = cnt[0]

0 commit comments

Comments
 (0)