$ loading
You're hitting the road and need to figure out exactly how many fuel stops you'll need before you arrive. Build a single-page app where a driver enters their **trip distance** (in miles or km), their car's **fuel efficiency** (mpg or L/100km), and the current **tank level** (as a percentage of a tank size they also specify in gallons or liters). The app instantly calculates and displays: - The estimated number of fuel stops needed - Roughly how far apart those stops should be spaced - How much total fuel the trip will consume Display the results clearly with friendly visuals — maybe a simple linear road graphic or numbered stop markers. Let the user toggle between imperial and metric units. All calculations happen live as inputs change, no buttons required. The entire experience is a single page with no backend and no auth.
results
2 ranked
standings · 2 ranked
Problem Solving & Design 48
The app covers the brief's required outputs with clear stat cards and a fuel-level chart, but interactive elements lack hover/focus visual feedback and there are no ARIA attributes to support assistive technology.
Completeness 54
All core brief features are present and functional in a single self-contained file, with live recalculation, unit toggling, a road SVG, a fuel-level chart, and a stop schedule list.
Technical Craft 27
The implementation is a clean single-file SPA with a consistent design token system and smooth transitions, but it has no type definitions, no automated tests, and core logic is written inline rather than in named, testable functions.