Skip to content

Commit

Permalink
Update Time Complexity
Browse files Browse the repository at this point in the history
  • Loading branch information
naringst authored Sep 29, 2024
1 parent c47ebed commit cefbb6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion longest-substring-without-repeating-characters/naringst.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

# Runtime: 51ms, Memory: 16.83MB
# Time complexity: O(len(s))
# Time complexity: O(len(s)^2)
# Space complexity: O(len(s))

class Solution:
Expand Down

0 comments on commit cefbb6b

Please sign in to comment.