I make a minimised DFA, to use key value style coding, I used dictionary.
so there is a dictionary,
{1: {1:2}}
I want to update this dictionary add 2:3 to add key 1’s dictionary.
{1: {1:2, 2:3}}
I don’t know how to do this.
Is any simple idea to solve this?
you can use
update():