This commit is contained in:
Oleksandr Hryshchenko 2021-11-25 23:17:27 +00:00
parent 8407d298ed
commit 213a63cecf

View File

@ -26,7 +26,7 @@ void insertSort(struct pizza array[SIZE]){
} }
else{ else{
temp = array[j]; temp = array[j];
array[j] = array[i]; array[j] = array[i];
array[i] = temp; array[i] = temp;
i = j; i = j;
} }