I have 3 list in Java and how do I merge them?
list1 = [10,20,30]
list2 = [40,50,60]
list3 = [70]
Output
res = [10,40,70,20,50,30,60]
I'm familiar with writing a achieving the result but would like to know if there is any libraries that I can use it.