Practice Python Coding Problems
Improve your skills by solving real Python coding problems.
Write code, submit, and get instant feedback.
Weekly Problem
Find the Duplicate
Find the duplicate number in an array of integers.
main.py
n = int(input())
arr = list(map(int, input().split()))
# Find and print the duplicate number
Subscribe to Weekly Practice Problem
Get the latest coding practice problem delivered to your inbox every week.
Free Practice Problems
| Problem | Description | Difficulty | XP | |
|---|---|---|---|---|
| Say Hello | Read a name from input and print a greeting. | Easy | 20 XP | |
| Celsius to Fahrenheit | Convert a temperature from Celsius to Fahrenheit. | Easy | 20 XP | |