I have 2 arrays:
var identic = [String]() var linef = [String]()
I\'ve appended them with data. Now for usability purposes my goal
This is a generic solution
func dictionaryFromKeysAndValues(keys:[K], values:[V]) -> Dictionary { assert((count(keys) == count(values)), "number of elements odd") var result = Dictionary() for i in 0..