feat: stuff

This commit is contained in:
2026-04-02 15:43:24 +02:00
parent 3586c94e25
commit 2ca8bb4427
7 changed files with 113 additions and 17 deletions

View File

@@ -74,7 +74,7 @@ func (s *Substring) CullRight(t Substring) {
}
}
func minWindow(s string, t string) string {
func MinWindow(s string, t string) string {
ss, tt := NewSubstring(s), NewSubstring(t)
best_answer := ""