Skip to content

Commit 2bfa47b

Browse files
authored
Update minimum-number-of-steps-to-make-two-strings-anagram.py
1 parent 39850b0 commit 2bfa47b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Python/minimum-number-of-steps-to-make-two-strings-anagram.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Time: O(n)
22
# Space: O(1)
33

4+
import collections
5+
6+
47
class Solution(object):
58
def minSteps(self, s, t):
69
"""

0 commit comments

Comments
 (0)