A courier must travel each street exactly once on the following map:
```text
A---B
|\ |
| \ |
C---D---F
\ | /
\ | /
E
```
To avoid ambiguity, the streets (edges) are exactly these 9:
- A-B, A-C, B-C, B-D, C-D, C-E, D-E, D-F, E-F.
Is there a route that uses all streets exactly once?
If it exists, it indicates which neighborhood it should start from, which one to end in, and gives a valid route.