Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 621 Bytes

README.md

File metadata and controls

18 lines (11 loc) · 621 Bytes

Shuffling Algorithms

en pt-br

Shuffling algorithms are used to rearrange the elements in an array in a random order.

Implementation Details

The shuffling algorithms are implemented as functions that take an array of generic elements as a parameter, and return the shuffled array. The functions follow this signature:

type ShufflingFunction<T> = (array: T[]) => T[];

Return to main page