Member since
08-07-2016
1
Post
0
Kudos Received
0
Solutions
08-07-2016
10:02 PM
The first operation makes each value into a set containing that single value. ++ just adds collections together, combining elements of both sets. This is trying to build up a set of all values for each key. It can be written more simply as "groupByKey" really. Even this code could be more compact and efficient.
... View more