diff options
| author | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2024-09-12 17:22:37 +0900 |
|---|---|---|
| committer | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2024-09-12 17:22:37 +0900 |
| commit | 8a77bd0cf92a726f186cd7490f7ed6a94b936fab (patch) | |
| tree | 7197e8be5fae75493ffef5b2799589d996224ff0 /1_array_hashing/group_anagram.py | |
| parent | f0f7eac5318e55f684210dcaf82badb024fc42b5 (diff) | |
Init
Diffstat (limited to '1_array_hashing/group_anagram.py')
| -rw-r--r-- | 1_array_hashing/group_anagram.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/1_array_hashing/group_anagram.py b/1_array_hashing/group_anagram.py index f2085b2..77df0bc 100644 --- a/1_array_hashing/group_anagram.py +++ b/1_array_hashing/group_anagram.py @@ -65,7 +65,7 @@ video: https://youtu.be/vzdNOK2oB2E 1. dictionary time: O(m*n*26) = O(m*n) -space: O(m*n) +space: O() code: ```python class Solution: |
