Write a program that will output a valid route one could follow to collect all specified items within a map. The map is a json description of set of rooms with allowed path and contained object. exercize starts with an input of: json reppresentation of map starting room list of object to collect
Input Start Room ID: 4
Input Objects To Collect: Knife, Potted Plant, Pillow
python retro_route_puzzle.py data.json 4 "knife" "Potted Plant" "Pillow"