Card 05/ 06

ExerciseDifficulty: Advanced1 min

Write the Endpoint

Write a handler for DELETE /rides/{id} that removes a ride and returns 204 No Content — no body, since there's nothing left to describe.

See a solution
java
@DeleteMapping("/{id}")
ResponseEntity<Void> deleteRide(@PathVariable String id) {
    rides.remove(id);
    return ResponseEntity.noContent().build();
}