Last active
December 24, 2017 06:01
-
-
Save jayhack7/934294c1f70cfb783c0380014a1a2ca0 to your computer and use it in GitHub Desktop.
my solution to Leetcode - Big Countries https://leetcode.com/problems/big-countries/description/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT name, population, area | |
FROM world | |
WHERE area > 3000000 OR population > 25000000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment