Write a function `digit_count(n)` that takes an integer `n` and returns the number of digits in its decimal representation. For negative numbers, the minus sign is not counted. The number 0 has exactly one digit.
Constraints
n is an integer between -(10^9) and 10^9 inclusive.