const inceraseByOne = (num) => {
  const digits = Math.floor((Math.log(num) * Math.LOG10E) + 1);
  const minNumeral = getMinDigit(num);
  let moreBalancedNum = num;