Lily Carpenter лет назад: 12
Родитель
Сommit
caaf62798e
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -16,4 +16,4 @@ Take a variable number of unsigned integers [in a binary stream] from STDIN and
16 16
 
17 17
 Solution
18 18
 --------
19
-Firstly, we pull arrays of numbers using fread until we have all of them, putting them in our grand numbers array while we go. After this, we call an in-place recursive version quicksort to sort the numbers, then output them to STDOUT.
19
+Firstly, we pull arrays of numbers using fread until we have all of them, putting them in our grand numbers array while we go. After this, we call an in-place recursive version of quicksort to sort the numbers, then output them to STDOUT.