Given an integer num, return a string representing its base 7 equivalent.
Constraints:
The core idea behind this problem is standard base conversion using repeated division. To convert a decimal integer to its base 7 representation, we repeatedly divide the number by ...