Create a function which takes in an encoded string and returns a dictionary according to the following example:
parse_code("John000Doe000123") ➞ {
"first_name": "John",
"last_name": "Doe",
"id": "123"
}
parse_code("michael0smith004331") ➞ {
"first_name": "michael",
"last_name": "smith",
"id": "4331"
}
parse_code("Thomas00LEE0000043") ➞ {
"first_name": "Thomas",
"last_name": "LEE",
"id": "43"
}
id numbers will not contain any zeros.