- 博客(2)
- 收藏
- 关注
原创 Collatz 序列 (考兹特猜想)
# It is a practice.def collatz(num): if num % 2 == 0 : return num//2 elif num % 2 == 1: return 3*num + 1 else: print('error')try: num = int(input()) while ...
2018-07-09 17:53:48
2744
原创 MySQL入门:leedcode基础题—— Combine Two Tables
mysql新手上路,根据秦路大大的推荐,在 leetcode上刷刷题,第一站是easy题: Combine Two Tables首先由 combine 可知需要用 join 来联接,重点是 for each person in the Person table,所以应当以Person表为主表,即采用 left join 来联接。SELECT Person.FirstName, Person.La...
2018-03-09 18:12:30
307
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅