文章目录 一、题目二、题解 一、题目
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”
Constraints:
-107 < num < 107
二、题解
class Solution …
Code Composer Studio [CCS] - Hot keys [快捷键] 1. Hot keys2. Debug modeReferences 1. Hot keys
F5 - Refresh
F3 - Open Declaration
Ctrl B - Build All
F4 - Open Type Hierarchy
Alt Left - Back to function
Alt Right - Forward to function
2. Debug mode…