Write a function `DigitLen()` that takes two integers as arguments and returns the number of digits in the first `int` by the base of the second `int`.
- 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.