I have use case where I have to modify my value i.e., Map<String, List>
my sample map looks like this
1 -> [10, 20, 30]
2 -> [40, 50, 60]
now I want to remove an element “20” from “1” and I want to do this via update in java code.
Please help with this.