Skip to content

Udacity Data Structures and Algorithms Nanodegree Project_3, Problem_4

Notifications You must be signed in to change notification settings

Mcan45/Dutch-National-Flag-Problem

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

Dutch-National-Flag-Problem

Given an input array consisting on only 0, 1, and 2, sort the array in a single traversal. You're not allowed to use any sorting function that Python provides.

Note: O(n) does not necessarily mean single-traversal. For e.g. if you traverse the array twice, that would still be an O(n) solution but it will not count as single traversal.

Here is some boilerplate code and test cases to start with:

def sort_012(input_list): """ Given an input array consisting on only 0, 1, and 2, sort the array in a single traversal.

Args:
   input_list(list): List to be sorted
"""
pass

def test_function(test_case): sorted_array = sort_012(test_case) print(sorted_array) if sorted_array == sorted(test_case): print("Pass") else: print("Fail")

test_function([0, 0, 2, 2, 2, 1, 1, 1, 2, 0, 2]) test_function([2, 1, 2, 0, 0, 2, 1, 0, 1, 0, 0, 2, 2, 2, 1, 2, 0, 0, 0, 2, 1, 0, 2, 0, 0, 1]) test_function([0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2])

About

Udacity Data Structures and Algorithms Nanodegree Project_3, Problem_4

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages