Hi guys 'n' gals
Just need some advice -
I am using a sorted map to store info that I read line by line from a text file.
example of info:
id product price
1 option_1 23
2 option_1 23
3 option_1 23
2 option_2 24
3 option_2 24
3 option_3 12
My question is: Will I be able to use the id's as keys? That would mean that there would be more than 1 key with the value "3".
Is this allowed? If not, what should I use instead?