Skip to content

Array Chunk #8

Description

@xasterKies

Directions

Given an array and chunk size, divide the array into many where the subarray is of length size .Make use of functions and methods where necessory

You can code this with any language of you choice!

Examples

chunk([ 1, 2, 3, 4], 2) -----> [ [ 1, 2 ], [ 3, 4 ] ]
chunk([ 1, 2, 3, 4, 5 ], 2) -----> [ [ 1, 2 ], [ 3, 4 ], [5] ]
chunk([ 1, 2, 3, 4, 5, 6, 7, 8 ], 3) -----> [ [ 1, 2, 3], [ 4, 5, 6 ], [7, 8] ]
chunk([ 1, 2, 3, 4, 5 ], 4) -----> [ [ 1, 2 , 3, 4 ], [5] ]
chunk([ 1, 2, 3, 4, 5 ], 10) -----> [ 1, 2 , 3, 4, 5 ]

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Labels

Type

No type

Projects

No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions