最新 最热

LeetCode171 Excel Sheet Column Number

Given a column title as appear in an Excel sheet, return its corresponding column number.

2019-02-19
1

leetcode 67 Add Binary

Add Binary Total Accepted: 46815 Total Submissions: 189215 My Submissions

2019-01-18
1

leetcode 生成杨辉三角形, 118 119 Pascal's Triangle 1,2

Given numRows, generate the first numRows of Pascal's triangle.

2019-01-18
1

leetcode 102 Binary Tree Level Order Traversal

Given a binary tree, return the level order traversal of its nodes' values. (ie, from left to right, level by level).

2019-01-18
2

leetcode 172 Factorial Trailing Zeroes

Given an integer n, return the number of trailing zeroes in n!.

2019-01-18
1

更新c++学习笔记 第三章

定义:就是在声明函数的某个参数的时候为之指定一个默认值,在调用该函数的时候如果采用该默认值,你就无须指定该参数。

2018-12-03
0

关于return的一些了解

如果符合某个条件要退出的话,可以用return返回,否则可以不写这句代码的,当程序执行到“}”时会自动返回。

2018-09-10
0

LeetCode(一)

Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have exactly o...

2018-09-04
1

[LeetCode]Reverse Integer题解[LeetCode]Reverse Integer题解

要点 本题考查的是整数相加的溢出处理,检查溢出有这么几种办法: – 两个正数数相加得到负数,或者两个负数相加得到正数,但某些编译器溢出或优化的方式不一样 – 对于正数,如果最大整数减去一个数小于另一个数,或者对于负数,...

2018-09-04
1

173. 链表插入排序插入排序

用插入排序对链表排序 样例 Given 1->3->2->0->null, return 0->1->2->3->null

2018-09-04
1