Skip to content

Commit 9d4c38f

Browse files
committed
daily
1 parent 6a19e9c commit 9d4c38f

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

my-submissions/m3016 v1.py

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
class Solution:
2+
def minimumPushes(self, word: str) -> int:
3+
cnt = sorted([f for f in Counter(word).values()])
4+
output = 0
5+
6+
for i in range(len(cnt)) :
7+
output += cnt[-i - 1] * (ceil((i + 1) / 8))
8+
9+
return output

my-submissions/m3016 v2 Oneliner.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
class Solution:
2+
def minimumPushes(self, word: str) -> int:
3+
return sum([x * ceil(i / 8) for i, x in enumerate(sorted([f for f in Counter(word).values()], reverse=True), 1)])

0 commit comments

Comments
 (0)