mirror of
https://github.com/lWolvesl/leetcode.git
synced 2026-06-04 02:21:15 +08:00
13 lines
149 B
Go
13 lines
149 B
Go
package main
|
|
|
|
func minPartitions(n string) int {
|
|
res := 0
|
|
for _, v := range n {
|
|
t := int(v - '0')
|
|
if res < t {
|
|
res = t
|
|
}
|
|
}
|
|
return res
|
|
}
|