Skip to content
Advertisement

Chunk array based on conditional logic using ramda

I have an array of sizes that I’d like to reduce + chunk based on custom logic using ramda:

JavaScript

If the cumulative total exceeds the 50 threshold I would like to chunk them up, so that the result becomes:

JavaScript

I’ve tried using reduceWhile and splitWhen but with no luck so far

Advertisement

Answer

Reduce the array to a new array. On each iterate, check if the current number + last item is greater than the max. If it is, set the current number as the last item. If not add the current number to the last item:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement