Skip to content

Commit acb408b

Browse files
authored
Update Longest_Substring_without_Repeating_Character.java
1 parent 871d56b commit acb408b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Strings/Longest_Substring_without_Repeating_Character.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,5 +67,5 @@ public int lengthOfLongestSubstring(String s) {
6767
// Time & Space Complexity -
6868
/*
6969
Time - O(N), where N is linearly traversing an string
70-
Space - O(N) , because we using Set DS
70+
Space - O(N), because we using Set DS
7171
*/

0 commit comments

Comments
 (0)