Skip to content

Commit d5c7d54

Browse files
authored
Update Solution.go
1 parent 1e3d066 commit d5c7d54

File tree

1 file changed

+0
-14
lines changed
  • solution/1900-1999/1960.Maximum Product of the Length of Two Palindromic Substrings

1 file changed

+0
-14
lines changed

solution/1900-1999/1960.Maximum Product of the Length of Two Palindromic Substrings/Solution.go

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -55,17 +55,3 @@ func maxProduct(s string) int64 {
5555

5656
return res
5757
}
58-
59-
func max(a, b int) int {
60-
if a > b {
61-
return a
62-
}
63-
return b
64-
}
65-
66-
func min(a, b int) int {
67-
if a < b {
68-
return a
69-
}
70-
return b
71-
}

0 commit comments

Comments
 (0)