A month ago we've started group project in college. Our topic is decision tree and my job in this iteration is to create a data collection. I used Dictionary
with string as key and string as value. Today my team mate suggested me to use List
as a collection of values. Does it make sense to keep using dictionary with string as key and list as value?
Can I easily modify values if they are in list in dictionary?
Thanks.