summaryrefslogtreecommitdiff
path: root/README.md
blob: 0e553727cdf0e11e915f0e426cf476d7f831c851 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# algo-py

## The python algorithm repository
The purpose of this repo is to explore and demonstrate the function of computer
science algorithms with file manipulation (using CSV files of random numbers).

The functional file contains I/O functions for ingressing and egressing data.

###### inputout.py
* Contains functions that are imported into algorithm scripts for ingressing/
exporting data to csv

###### list-generator.py
* Used to create randomly-generated CSVs for testing algorithm performance

###### selection-sort.py
* Basic selection sort algorithm, n\*n=n^2 complexity (very slow)

###### tripler.py
* Serves as a proof-of-concept for file manipulation