博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetcode 66.加一 python3
阅读量:5337 次
发布时间:2019-06-15

本文共 513 字,大约阅读时间需要 1 分钟。

class Solution:    def plusOne(self, digits):    """    :type digits: List[int]    :rtype: List[int]     """    s = ''    for i in digits:  # 转化成字符串        s += str(i)    s = int(s) + 1        return [int(x) for x in str(s)]q = Solution()l1 = [9]l2 = [1, 2, 9]l3 = [1, 9, 9]l4 = [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9]print(q.plusOne(l1))print(q.plusOne(l2))print(q.plusOne(l3))print(q.plusOne(l4)) 结果:

[1, 0]

[1, 3, 0]
[2, 0, 0]
[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]

转载于:https://www.cnblogs.com/liang3044/p/9793469.html

你可能感兴趣的文章
2018icpc徐州OnlineA Hard to prepare
查看>>
【转】redo与undo
查看>>
String类中的equals方法总结(转载)
查看>>
内存地址对齐
查看>>
创新课程管理系统数据库设计心得
查看>>
SDUTOJ3754_黑白棋(纯模拟)
查看>>
把word文档中的所有图片导出
查看>>
ubuntu 18.04取消自动锁屏以及设置键盘快捷锁屏
查看>>
arcgis api 4.x for js 结合 Echarts4 实现散点图效果(附源码下载)
查看>>
YTU 2625: B 构造函数和析构函数
查看>>
加固linux
查看>>
Hyper-V虚拟机上安装一个图形界面的Linux系统
查看>>
【Crash Course Psychology】2. Research & Experimentation笔记
查看>>
关于 linux 的 limit 的设置
查看>>
MTK笔记
查看>>
【题解】 bzoj1597: [Usaco2008 Mar]土地购买 (动态规划+斜率优化)
查看>>
fat32转ntfs ,Win7系统提示对于目标文件系统文件过大解决教程
查看>>
shell cat 合并文件,合并数据库sql文件
查看>>
python全栈 计算机硬件管理 —— 硬件
查看>>
Delphi7编译的程序自动中Win32.Induc.a病毒的解决办法
查看>>