Pacific Atlantic Matrix DFS
Given a matrix of heights, return cells that can reach both Pacific and Atlantic oceans using a DFS approach.
Regions Cut by Slashes
Given a grid of slashes, count the number of connected regions formed by the slashes and the grid borders.
Days in month
Write a function that returns the number of days in a given month and year, correctly handling leap years.
Format date output
Parse ISO date strings and format them into a friendly US-style date output.
Days Between Dates
Write a function that returns the number of days between two given dates.
Add Days to Date
Given a date in YYYY-MM-DD format and an integer number of days, return the resulting date in the same format.
Weekday from date
Write a function that returns the full English weekday name for a date string.
Leap Years in Range
Write a function that returns a list of all leap years between two given years, inclusive.
Age in years months days
Given birth and reference dates, return age as a dictionary with years, months, days.
Time Difference HH:MM
Given two times in HH:MM format, return the absolute difference as a string in HH:MM format.
Unix timestamp to datetime
Write a function that returns a UTC datetime string from a Unix timestamp.
Datetime to Unix timestamp
Parse a datetime string and convert it to a Unix timestamp assuming UTC.
Business days between
Calculate the number of business days (Mon-Fri) between two dates, inclusive of both endpoints.
Next Weekday Finder
Write a function that returns the next weekday date after a given date.
Previous Weekday Finder
Given a date, return the date of the immediately preceding weekday (Monday–Friday).
Quarter from date
Compute the quarter (1-4) for a date string like '2023-07-15'.
Week Number ISO
Given a date, return its ISO 8601 week number (1–53) without using datetime.isocalendar().
Duration Human Readable
Write a function that turns a number of seconds into a human-readable duration like '2 hours, 1 minute'.
Schedule conflict check
Write a function that takes a list of time intervals and returns True if any two overlap.
Julian Day Number Converter
Implement two functions to convert between Gregorian calendar dates and Julian Day Numbers using a standard formula.
Month End Date
Implement a function that returns the last day of the month for a given year and month.
Month Start Date
Parse a date string and return the first day of its month in the same format.
Daylight saving check
Given a date in the US, determine if daylight saving time starts or ends on that day.
Easter Date Calculator
Implement a function that returns the date of Easter Sunday for a given year using the Gregorian computus algorithm.
Showing 841–864 of 925 challenges
Guide: free Python coding challenges
Practice Python by solving problems
PythonSkillset challenges are hands-on coding exercises from beginner to advanced. Open a challenge, read the problem, write Python in the split-pane editor, and run tests with Pyodide — no install required.
How to use the arena
- Pick a category — basics, algorithms, strings, and more
- Open a challenge, read the statement, and edit the starter code
- Run tests, fix failures, then try a related quiz or tutorial lesson
Challenges vs tutorials and quizzes
Challenges test what you can build under constraints. For guided teaching, use our Python tutorials. For quick checks, try quizzes or copy snippets from code samples.