Split
Usage
• Split[list] splits list into sublists consisting of runs of identical elements. • Split[list, test] treats pairs of adjacent elements as identical whenever applying the function test to them yields True.
Notes
• The default function used to test whether elements are identical is SameQ. • Split can be used to perform run-length encoding. • New in Version 3.
|