package q2405 func partitionString(s string) int { var seen int32 partitions := 1 for i := range len(s) { offset := s[i] - 'a' if seen|1<