The program is written in Python 3.10
- The program is given a json file with letters and number of days it takes to write them to the commit map
import json
json_letters = """
{
"a" : "1",
"h" : "2",
"o" : "3",
"j" : "4"
}
"""
- The data is parsed to parsed_letters so Python can further work with them
parsed_letters = json.loads(json_letters)