Skip to content

Instantly share code, notes, and snippets.

@jayhack7
Last active December 24, 2017 06:01
Show Gist options
  • Save jayhack7/934294c1f70cfb783c0380014a1a2ca0 to your computer and use it in GitHub Desktop.
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/
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