-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
23 lines (19 loc) · 862 Bytes
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""Sorting Algorithms config."""
FILES_REPO = "files/"
IN_REPO = "files/in/"
OUT_REPO = "files/out/"
LOGS_REPO = "files/out/logs/"
SEPARATOR = " - "
STR_SIZE = 50
STR_NUMBER = 50
MAIN_DESCRIPTION = 'Sorting Algorithms'
ALGORITHM_DESCRIPTION = 'execute sorting algorithm (insertionsort, \
heapsort, \
mergesort, \
quicksort, \
radixsort, \
selectionsort, \
shellsort)'
NUMBER_DESCRIPTION = 'number of input values'
ORDER_DESCRIPTION = 'order of input values (crescent, decreasing, random)'
SIZE_DESCRIPTION = 'size of input values (small, large)'