Skip to content

Commit

Permalink
Update 454.4-sum-ii.md
Browse files Browse the repository at this point in the history
  • Loading branch information
azl397985856 authored Oct 15, 2019
1 parent 1e1786a commit 43dbb39
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions problems/454.4-sum-ii.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ The two tuples are:
## 代码

语言支持: `JavaScript``Python3`

`JavaScript`:
```js

/*
Expand Down Expand Up @@ -83,6 +85,8 @@ var fourSumCount = function(A, B, C, D) {
};
```

`Python3`:

```python
class Solution:
def fourSumCount(self, A: List[int], B: List[int], C: List[int], D: List[int]) -> int:
Expand Down

0 comments on commit 43dbb39

Please sign in to comment.