mirror of
https://github.com/cubixle/codekata-golang.git
synced 2026-05-01 00:48:45 +01:00
20210104
This commit is contained in:
+32
-1
@@ -1,9 +1,40 @@
|
||||
package main
|
||||
|
||||
import "strings"
|
||||
|
||||
func main() {
|
||||
|
||||
}
|
||||
|
||||
func solution(s string) string {
|
||||
return ""
|
||||
var stack [26]int
|
||||
max := 0
|
||||
for i := 0; i < len(s); i++ {
|
||||
index := s[i] - 'a'
|
||||
stack[index]++
|
||||
if stack[index] > max {
|
||||
max = stack[index]
|
||||
}
|
||||
}
|
||||
sb := strings.Builder{}
|
||||
up := true
|
||||
for i := 0; i < max; i++ {
|
||||
if up {
|
||||
for j := 0; j < len(stack); j++ {
|
||||
if stack[j] > 0 {
|
||||
sb.WriteByte(uint8(j) + 'a')
|
||||
stack[j]--
|
||||
}
|
||||
}
|
||||
} else {
|
||||
for j := len(stack) - 1; j >= 0; j-- {
|
||||
if stack[j] > 0 {
|
||||
sb.WriteByte(uint8(j) + 'a')
|
||||
stack[j]--
|
||||
}
|
||||
}
|
||||
}
|
||||
up = !up
|
||||
}
|
||||
return sb.String()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user