exercism-go/variable-length-quantity/variable_length_quantity.go

9 lines
238 B
Go

package variablelengthquantity
func EncodeVarint(input []uint32) []byte {
panic("Please implement the EncodeVarint function")
}
func DecodeVarint(input []byte) ([]uint32, error) {
panic("Please implement the EncodeVarint function")
}