Python课程练习
Edge51
这个作者很懒,什么都没留下…
展开
-
Python第二章课程练习
Python第二章课程练习2-1 存储并打印一条消息 message = “Fighting!” print(message)2-2 存储并打印一条消息,然后修改内容后再打印一次 message = “Happy” print(message) message = “Ending” print(message) 2-3 存储姓名,个性化...原创 2018-03-07 23:46:03 · 623 阅读 · 0 评论 -
leetcode 2 add two numbers
leetcode 2 add two numbers常规数字加法#2017/03/12# practise on leetcode# Definition for singly-linked list.class Solution: def addTwoNumbers(self, l1, l2): ans = ListNode(0) t...原创 2018-07-27 23:44:40 · 143 阅读 · 0 评论 -
leetcode 004 Median of Two Sorted Arrays
leetcode 004 Median of Two Sorted Arrays先找第k个,再把第k个设为中间值就是答案。 类似二分查找的思想,k大于一半时小于一半时分别对应与不同的舍弃搜索范围的情况。 例如当k大于一半时,比较两个数组的中间元素,舍弃较小元素所属的数组的前一半,对剩余进行同样的查找(注意更新k,要减去该数组长度的一半)。这样每次缩小范围为原来的四分之三。# 2018/...原创 2018-07-27 23:20:04 · 152 阅读 · 0 评论 -
Python课程第十章练习
Python课程第十章练习原创 2018-07-27 21:51:38 · 340 阅读 · 0 评论 -
Python课程第八章练习
这里写代码片 class Restaurant(): def init(self, restaurant_name, cuisine_type): self.name = restaurant_name self.cuisine_type = cuisine_typedef describe_restaurant(self): p...原创 2018-07-27 21:11:43 · 288 阅读 · 0 评论 -
Python课程第八章练习
Python课程第八章练习原创 2018-07-27 21:05:22 · 345 阅读 · 0 评论 -
Python课程第七章练习
Python课程第七章练习实现不完全针对题目,调整了一下,解决的问题是相似的原创 2018-07-27 20:59:46 · 333 阅读 · 0 评论 -
Python课程第六章练习
Python课程第六章练习实现并不完全针对题目,调整了一点点,把三个题当做一个题做了原创 2018-07-27 20:52:08 · 254 阅读 · 0 评论 -
Python课程第五章练习
Python课程第五章练习原创 2018-07-27 20:45:16 · 406 阅读 · 0 评论 -
Python课程第四章练习
Python课程第四章练习原创 2018-07-27 19:31:50 · 909 阅读 · 0 评论