auto commit

This commit is contained in:
CyC2018
2018-03-12 16:36:54 +08:00
parent e33c0af88d
commit 0de883fa57
3 changed files with 8 additions and 5 deletions

View File

@ -616,7 +616,7 @@ public double Power(double base, int exponent) {
**题目描述**
输入数字n按顺序打印出从1最大的n位十进制数。比如输入3则打印出1、2、3 一直到最大的3位数即999。
输入数字 n按顺序打印出从 1 最大的 n 位十进制数。比如输入 3则打印出 1、2、3 一直到最大的 3 位数即 999。
**解题思路**
@ -908,7 +908,6 @@ private boolean isSubtree(TreeNode root1, TreeNode root2) {
<div align="center"> <img src="../pics//7cfcfdf7-63a7-4111-a677-2eca29fbcf24.png"/> </div><br>
```java
public void Mirror(TreeNode root) {
if (root == null) return;
@ -1471,7 +1470,6 @@ public ArrayList<Integer> GetLeastNumbers_Solution(int[] input, int k) {
}
```
## 41.1 数据流中的中位数
**题目描述**