Hi! I'm making a small game for fun, and in order to create the character - I need to let the player choose proficiencies for skills. The problems -
- I am going for nested hash maps because it seems to be the best for my purpose. I can't figure out how many nests i need. So, skills are divided by job - so an antiquitarian has appraisal and a craft specialty. And within each skill I have 3 values (a full score, half score, and a fifth score). I say again, I'm unsure whether it's a map in a map, or if its 3.
- Are you allowed to make maps by initializing only the key but not the values? Because I need user input for the values.
Thanks!