I have a list of object as such
secret_list = [
{
secret1 = {}
secret2 = {}
},
{
secret3 = {}
}
]
and i want to flatten this out so they become a list or map of 3 objects like:
secret_list = [
{
secret1 = {}
},
{
secret2 = {}
},
{
secret3 = {}
}
]
If all the keys across all the maps are unique you can use the solution in
secret_list2. However if you have duplicate keys between maps then use the solution insecret_list3OUTPUT