sowa on Nostr: npub1v807g…gnsur Hope is helps :) `let data = [["statistic": "account name", ...
npub1v807g2pedyvu7tppsghss68e5zlyepfl9m2fxgxyds8uw3w3dtfq2gnsur (npub1v80…nsur)
Hope is helps :)
`let data = [["statistic": "account name", "value": " SomeAccount"], ["value": "2023-06-23 16:44:49 UTC", "statistic": "export time"]] var resultDict = [String: String]() data.forEach { dict in guard let key = dict["statistic"], let value = dict["value"] else { return } resultDict[key] = value }`
Hope is helps :)
`let data = [["statistic": "account name", "value": " SomeAccount"], ["value": "2023-06-23 16:44:49 UTC", "statistic": "export time"]] var resultDict = [String: String]() data.forEach { dict in guard let key = dict["statistic"], let value = dict["value"] else { return } resultDict[key] = value }`