10 lines
221 B
Go
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")
|
|
}
|