I have dictionary :
var DictPl11 = [Int: String]()
I want to check for all integers, that are connected with one same string. For example with string "0":
DictPl11 = [1: "0", 4: "1", 3: "0", 6: "0"]
I want to print Int values 1, 3, 6
Thank you