Skip to content

Latest commit

 

History

History
66 lines (42 loc) · 1.06 KB

273.整数转换英文表示.md

File metadata and controls

66 lines (42 loc) · 1.06 KB

将非负整数 num 转换为其对应的英文表示。

 

示例 1:

输入:num = 123
输出:"One Hundred Twenty Three"

示例 2:

输入:num = 12345
输出:"Twelve Thousand Three Hundred Forty Five"

示例 3:

输入:num = 1234567
输出:"One Million Two Hundred Thirty Four Thousand Five Hundred Sixty Seven"

 

提示:

  • 0 <= num <= 231 - 1
标签: ['递归', '数学', '字符串']
难度:Hard 喜欢:287

算法 1

(暴力枚举) $O(n^2)$

blablabla

时间复杂度

代码实现

参考文献