9 lines
238 B
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")
|
|
}
|