Go:十进制转二进制算法


package conversion

// Importing necessary package.
import (
	"errors"
	"strconv"
)

// Reverse() function that will take string,
// and returns the reverse of that string.
func Reverse(str string) string {
   
	rStr :=