The Portfolio
A medium Python interview practice problem on DataDriven. Write and execute real python code with instant feedback.
- Domain
- Python
- Difficulty
- medium
- Seniority
- L3
Problem
A short-term rental marketplace exports its `listings`, one row per listing with a host and a bed count, and a single host can own several. We're publishing host standings, where a host's standing is the total beds across all of their listings. Produce the standings, biggest hosts first.
Summary
Count every bed under a name. The largest holdings rise first.
Practice This Problem
Solve this Python problem with real code execution. DataDriven runs your Python code in a real environment and checks it automatically.