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{
temp = array[j];
array[j] = array[i];
array[j] = array[i];
array[i] = temp;
i = j;
}