Skip to content

Commit d8da013

Browse files
committed
Day 34: update space complexity for final implementation
1 parent 6c7cac9 commit d8da013

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

day34/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ IPv6
4141
Input strings that don't fit either set of constraints are neither IPv4 nor IPv6.
4242

4343
This solution basically just parses through the input string a constant number
44-
of times, so it runs in `O(n)` time and `O(1)` space.
44+
of times, so it runs in `O(n)` time but because I use the python split
45+
function, it's also using and `O(n)` space.
4546

4647
## Code
4748

0 commit comments

Comments
 (0)