You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
miguel 7b50c69f22 fix(checkpoints) add imports to the files 3 months ago
..
README.md docs(checkpoints-exercises): remove piscine imports 10 months ago
main.go fix(checkpoints) add imports to the files 3 months ago

README.md

digitlen

Instructions

Write a function DigitLen() that takes two integers as arguments and returns the times the first int can be divided by the second until it reaches zero.

  • The second int must be between 2 and 36. If not, the function returns -1.
  • If the first int is negative, reverse the sign and count the digits.

Expected function

func DigitLen(n, base int) int {

}

Usage

Here is a possible program to test your function:

package main

import (
	"fmt"
)

func main() {
	fmt.Println(DigitLen(100, 10))
	fmt.Println(DigitLen(100, 2))
	fmt.Println(DigitLen(-100, 16))
	fmt.Println(DigitLen(100, -1))
}

And its output:

$ go run . | cat -e
3$
7$
2$
-1$