Fix typo 'defne' -> 'define'.

This commit is contained in:
Alexander Cyon
2024-07-07 18:22:14 +02:00
parent 9d04bfd848
commit cb55dbbb96

View File

@@ -37,7 +37,7 @@ let pyramidTemplate: [Int] = (1...pH) + (1...pH).reversed()
// A^R - reversed array A, + - array concatenation operator,
// A indices are in range 1...A.length.
// define adjacent pyramid as A + A^R + A + A^R,
// defne adjacent pyramid height as A[A.length].
// define adjacent pyramid height as A[A.length].
// On 25% of following dataset stdlib sorting function will use heapSort.