Created
August 20, 2020 18:55
-
-
Save mkock/8e003ac9ba16ec54e20773bf442931ee to your computer and use it in GitHub Desktop.
Bus Ride, code snippet 03
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Bus carries Passengers from A to B if they have a valid bus ticket. | |
| type Bus struct { | |
| name string | |
| Passengers map[string]Passenger // Map of SSN to Passengers | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment