This commit is contained in:
krolyxon 2023-09-01 17:19:01 +05:30
parent 4d0fe32402
commit d014529048
1 changed files with 2 additions and 0 deletions

View File

@ -57,6 +57,7 @@ int main(int argc, char *argv[]) {
selectionsort(list, size);
break;
case 4:
getarr(size);
radixsort(list, size);
break;
default:
@ -122,6 +123,7 @@ Difficulty get_difficulty() {
break;
default:
printf(COLOR_RED "Invalid Choice. Defaulting to Medium\n" COLOR_OFF);
difficulty = Medium;
break;
}
return difficulty;