Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 1.23 KB

File metadata and controls

16 lines (11 loc) · 1.23 KB

595. Big Countries (Easy)

Date and Time: Mar 14, 2025, 00:27 (EST)

Link: https://leetcode.com/problems/big-countries


Solution:

SELECT name, population, area FROM World
WHERE area >= 3000000 OR population >= 25000000;

CC BY-NC-SABY: credit must be given to the creatorNC: Only noncommercial uses of the work are permittedSA: Adaptations must be shared under the same terms