Sample demo to showcase git usage and sample project
Prerequisite |
---|
What the Feature Is |
How to Use It |
- Have a
python3
installed to run this program.
A simple python program which does a basic selection sort. The purpose of this exercise is to showcase my usage of Github for COSC 499. With this program, you can sort either words (strings/chars) or numbers(ints, floats, doubles, etc..)
- Go to the directory and type the following command in terminal:
python3 -i unitTest.py
- It should say
Everything Passed!
and then you can sort number and strings by typingnumSort(numberArray)
orwordSort(wordArray)
. Example Number:numSort([4,2,1,3])
or Word :wordSort(["d","b","a","c"])
- See the sorted arrays print after you hit enter.