Skip to content

Latest commit

 

History

History
7 lines (4 loc) · 308 Bytes

README.md

File metadata and controls

7 lines (4 loc) · 308 Bytes

Sorter

A console app that sorts a provided single-line input string.

It converts all characters to lower case, and ignores all punctuation.

It makes use of the InsertionSort algorithm, which I've found to be the quickest (by using a stopwatch to count the number of ticks of different sort algorithms).