#504

Base 7

easy · verified · 53.9% accepted · 886 likes · top 45%

math · string

Description

Given an integer num, return a string of its base 7 representation.

Example 1:

Input: num = 100
Output: "202"

Example 2:

Input: num = -7
Output: "-10"

Solution