I have a list of UNIX timestamps which I convert into dates using DateFormatter. The array I have after formatting is something like this:
04-19-2017 04:50
04-19-2017 07:50
04-20-2017 14:31
04-20-2017 16:55
04-20-2017 21:08
04-21-2017 01:25
04-22-2017 05:34
I want to do this in order a table of dates without showing the same day twice, like: day - hour, hour, hour, instead of day - hour, day - hour, day - hour. Should I use dictionary to do it? Are you familiar with an easy way to do this? Thanks!