快速上手Linux 玩转典型应用
程序员文章站
2022-05-28 10:46:05
...
let 课程地址 = " http://icourse8.com/linux_yingyong.html ";
第1章 课程介绍
第2章 Linux简介
第3章 CentOs 的安装
第4章 准备工作
第5章 远程连接SSH专题
第6章 Linux常用命令讲解
第7章 WebServer安装和配置讲解
第8章 数据库服务
第9章 缓存服务
第10章 Git安装和使用
第11章 Php框架TP5,Lavaral Yii2.0 环境配置
第12章 Java运行环境配置
第13章 Python运行环境
第14章 服务管理
第15章 监控神器Zabbix
第16章 课程总结
class Solution:
def addTwoNumbers(self, l1, l2):
"""
:type l1: ListNode
:type l2: ListNode
:rtype: ListNode
"""
re = ListNode(0)
r=re
carry=0
while(l1 or l2):
x= l1.val if l1 else 0
y= l2.val if l2 else 0
s=carry+x+y
carry=s//10
r.next=ListNode(s%10)
r=r.next
if(l1!=None):l1=l1.next
if(l2!=None):l2=l2.next
if(carry>0):
r.next=ListNode(1)
return re.next