File tree 3 files changed +7
-1
lines changed
3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -34,4 +34,7 @@ All solutions will be accepted!
34
34
| 258| [ Add Digits] ( https://leetcode-cn.com/problems/add-digits/description/ ) | [ java/py/js] ( ./algorithms/AddDigits ) | Easy|
35
35
| 520| [ Detect Capital] ( https://leetcode-cn.com/problems/detect-capital/description/ ) | [ java/py/js] ( ./algorithms/DetectCaptial ) | Easy|
36
36
| 682| [ BaseBall Game] ( https://leetcode-cn.com/problems/baseball-game/description/ ) | [ java/py/js] ( ./algorithms/BaseBallGame ) | Easy|
37
- | 404| [ Sum Of Left Leaves] ( https://leetcode-cn.com/problems/sum-of-left-leaves/description/ ) | [ java/py/js] ( ./algorithms/SumOfLeftLeaves ) | Easy|
37
+ | 404| [ Sum Of Left Leaves] ( https://leetcode-cn.com/problems/sum-of-left-leaves/description/ ) | [ java/py/js] ( ./algorithms/SumOfLeftLeaves ) | Easy|
38
+
39
+ # Database
40
+ | 596| [ Big Countries] ( https://leetcode-cn.com/problems/big-countries/description/ ) | [ mysql] ( ./database/BigCountries ) | Easy|
Original file line number Diff line number Diff line change
1
+ # Big Countries
2
+ This problem is easy to solve
Original file line number Diff line number Diff line change
1
+ select name, population, area from World where area > 3000000 or population > 25000000
You can’t perform that action at this time.
0 commit comments