Given an integer n, find the total number of positive integers, with the odd digit count, less than n.
For example, if n is 786, the answer would be 9(1-digit numbers) + 687(3-digit numbers).
Examples :
total_positive_odd_digit_count(786) -> 696
total_positive_odd_digit_count(45) -> 9