Skip to content

Commit

Permalink
Update Leetocde题解.md
Browse files Browse the repository at this point in the history
  • Loading branch information
CyC2018 authored Feb 13, 2018
1 parent ceab991 commit c3fdf64
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions Leetocde题解.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,6 @@
* [Trie](#trie)
* [](#图)
* [位运算](#位运算)
* [其它](#其它)
* [注意细节](#注意细节)
* [参考资料](#参考资料)
<!-- GFM-TOC -->

Expand Down Expand Up @@ -4883,18 +4881,6 @@ public int maxProduct(String[] words) {
}
```

# 其它

## 注意细节

- 从功能测试、边界测试和负面测试来考虑输入。

- 两个浮点数比较是否相等不直接使用 ==

```java
Math.abs(a - b) <= 0;
```

# 参考资料

- [Leetcode](https://leetcode.com/problemset/algorithms/?status=Todo)
Expand Down

0 comments on commit c3fdf64

Please sign in to comment.