Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 260 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 260 Bytes

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