Given an integer value, return a new integer according to the rules below:
-1.lookAndSay(3132) ➞ 111222
// By reading the number digit by digit, you get three "1" and three "2".
// Therefore, you put three ones and three two's together.
// Remember to return an integer value (i.e BigIntger class).lookAndSay(1213200012171979) ➞ 23002799999999
lookAndSay(54544666) ➞ 44444444446666666666
lookAndSay(95) ➞ 555555555
lookAndSay(1213141516171819) ➞ 23456789
lookAndSay(120520) ➞ 200
lookAndSay(231) ➞ -1