Skip to content

Commit 1b7678b

Browse files
Update 0077-combinations.md
Carried out the changes
1 parent 4c1ba36 commit 1b7678b

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

dsa-solutions/lc-solutions/0000-0099/0077-combinations.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -131,14 +131,4 @@ def combine(self, n, k):
131131

132132
### Conclusion
133133

134-
Both approaches for finding the minimum window substring are efficient, operating with a time complexity of
135-
𝑂
136-
(
137-
𝑛
138-
)
139-
O(n) and a space complexity of
140-
𝑂
141-
(
142-
1
143-
)
144-
O(1). The Java and Python implementations utilize similar sliding window techniques, adjusting the window size dynamically to find the smallest substring containing all characters of t. The primary difference lies in language-specific syntax and data structures, but the underlying algorithm remains consistent.
134+
Both approaches for finding the minimum window substring are efficient, operating with a time complexity of O(n) and a space complexity of O(1). The Java and Python implementations utilize similar sliding window techniques, adjusting the window size dynamically to find the smallest substring containing all characters of t. The primary difference lies in language-specific syntax and data structures, but the underlying algorithm remains consistent.

0 commit comments

Comments
 (0)