All Questions
2 questions
2
votes
1
answer
413
views
Grouping models without dictionary
I want to group an array of structs only using arrays into an array of new structs. In this example I want to group the Person structs by ...
3
votes
1
answer
88
views
Transformations an array, combination of between map and reduce
I'm working on a function that reduces pairs of elements if they meet some criteria.
For example, given an array: ["1", "2", "a", "b", "3", "4"] I want to ...