Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

<< [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']