I've this dictionary :
var proposals: [[Character: String]] = [[Character: String]]()
How i properly loop it to retrieve both values ?
First loop through the top array to get dictionaries, then loop through dictionaries.
for subArray in proposals {
for (key,value) in subArray {
print("\(key) == \(value)")
}
}