Skip to content

Files

Latest commit

238dacf · May 30, 2020

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
May 30, 2020
Dec 4, 2019
Dec 4, 2019

<< [35] Segregate the values of an array >>

Given an array of strictly the characters 'R', 'G', and 'B', segregate the values of the array so that all the 'R's come first, the 'G's come second, and the 'B's come last. You can only swap elements of the array. Do this in linear time and in-place.

For example:

>>> coding_problem_35(['G', 'B', 'R', 'R', 'B', 'R', 'G'])
['R', 'R', 'R', 'G', 'G', 'B', 'B']