exercism/go/run-length-encoding/run_length_encoding.go
2022-08-24 14:28:45 +02:00

10 lines
221 B
Go

package encode
func RunLengthEncode(input string) string {
panic("Please implement the RunLengthEncode function")
}
func RunLengthDecode(input string) string {
panic("Please implement the RunLengthDecode function")
}