Weather Type in Each Country — LeetCode 1294 Python Solution

EasyLeetCode PremiumDatabase
Problem
#1294
Reading time
4 min

Table schema

SQL
Table: Countries +---------------+---------+ | Column Name | Type | +---------------+---------+ | country_id | int | | country_name | varchar | +---------------+---------+ country_id is the primary key (column with unique values) for this table. Each row of this table contains the ID and the name of one country.

Example

SQL
+---------------+---------+
| Column Name   | Type    |
+---------------+---------+
| country_id    | int     |
| country_name  | varchar |
+---------------+---------+
country_id is the primary key (column with unique values) for this table.
Each row of this table contains the ID and the name of one country.

Python solution

Python
import duckdb
import pandas as pd

def solution(countries: pd.DataFrame, weather: pd.DataFrame) -> pd.DataFrame:
    con = duckdb.connect()
    con.register("Countries", countries)
    con.register("Weather", weather)
    return con.execute("""SELECT
    country_name,
    CASE
        WHEN AVG(weather_state) <= 15 THEN 'Cold'
        WHEN AVG(weather_state) >= 25 THEN 'Hot'
        ELSE 'Warm'
    END AS weather_type
FROM
    Weather AS w
    JOIN Countries USING (country_id)
WHERE DATE_FORMAT(day, '%Y-%m') = '2019-11'
GROUP BY 1;""").df()

Complexity

MeasureComplexity
TimeO(n log n) (typical)
SpaceO(n) auxiliary

Related problems

Frequently asked questions

How hard is LeetCode 1294. Weather Type in Each Country?
LeetCode 1294. Weather Type in Each Country is rated Easy on LeetCode.
What topics does LeetCode 1294. Weather Type in Each Country cover?
LeetCode 1294. Weather Type in Each Country is tagged Database on LeetCode.
Is LeetCode 1294. Weather Type in Each Country a premium problem?
Yes. LeetCode 1294. Weather Type in Each Country is a LeetCode Premium problem, so the full statement and test cases require a paid LeetCode subscription.

Stuck on problems like this in a live interview?

Stealth Interview is a desktop app for macOS and Windows. It reads the problem off your screen and returns a working solution with a step-by-step explanation and its time and space complexity — invisible to screen sharing.

Get Stealth Interview