fix: it's rather translation, not transposition

This commit is contained in:
surtur 2020-06-26 11:52:05 +02:00
parent d9b2484bd6
commit 0ef019269d
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

2
main.c

@ -45,7 +45,7 @@ void do_magic(uint arr_len){
} }
printf("]\n"); printf("]\n");
printf("[*] transposing array\n"); printf("[*] translating the array\n");
int *ugly_arr = malloc(arr_len*sizeof(int)); int *ugly_arr = malloc(arr_len*sizeof(int));
uint helper = arr_len-1; uint helper = arr_len-1;