Update mergesort.ws

This commit is contained in:
David Pichsenmeister 2020-06-29 12:10:27 -07:00 committed by GitHub
parent 05b0d26930
commit e324b5ddaf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,7 +17,7 @@ HACKL AMOI WOS merge(
OIDA leftIndex WENNST MANST 0;
OIDA rightIndex WENNST MANST 0;
GEMMA (leftIndex < left.length && rightIndex < right.length) {
GEMMA (leftIndex < left.length UND ÜBRIGENS rightIndex < right.length) {
WOS WÜSTN (left[leftIndex] < right[rightIndex]) {
result.push(left[leftIndex++]);
} A SCHO WUASCHT {