Browse Source

I missed a word :(

Lily Carpenter 12 years ago
parent
commit
caaf62798e
1 changed files with 1 additions and 1 deletions
  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.