70.Base 7 Description Given an integer, return its base 7 string representation. Example1 Input: 100 Output: '202' Example2 Input: -7 Output: '-10' From LeetCode