FIXES: palindrome abc -> abccba (#831)

* FIXES: palindrome abc -> abccba

* FIXES: tests for palindrome

---------

Co-authored-by: Bernhard Wagner <gitcommit@nosuch.biz>
This commit is contained in:
Bernhard Wagner 2023-12-05 11:15:13 +01:00 committed by GitHub
parent b374cdf47c
commit 1bca05e349
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 40 additions and 27 deletions

View file

@ -3267,22 +3267,22 @@ exports[`runs examples > example "outside" example index 0 1`] = `
exports[`runs examples > example "palindrome" example index 0 1`] = `
[
"[ 0/1 → 1/4 | note:g ]",
"[ 1/4 → 1/2 | note:e ]",
"[ 1/2 → 3/4 | note:d ]",
"[ 3/4 → 1/1 | note:c ]",
"[ 1/1 → 5/4 | note:c ]",
"[ 5/4 → 3/2 | note:d ]",
"[ 3/2 → 7/4 | note:e ]",
"[ 7/4 → 2/1 | note:g ]",
"[ 2/1 → 9/4 | note:g ]",
"[ 9/4 → 5/2 | note:e ]",
"[ 5/2 → 11/4 | note:d ]",
"[ 11/4 → 3/1 | note:c ]",
"[ 3/1 → 13/4 | note:c ]",
"[ 13/4 → 7/2 | note:d ]",
"[ 7/2 → 15/4 | note:e ]",
"[ 15/4 → 4/1 | note:g ]",
"[ 0/1 → 1/4 | note:c ]",
"[ 1/4 → 1/2 | note:d ]",
"[ 1/2 → 3/4 | note:e ]",
"[ 3/4 → 1/1 | note:g ]",
"[ 1/1 → 5/4 | note:g ]",
"[ 5/4 → 3/2 | note:e ]",
"[ 3/2 → 7/4 | note:d ]",
"[ 7/4 → 2/1 | note:c ]",
"[ 2/1 → 9/4 | note:c ]",
"[ 9/4 → 5/2 | note:d ]",
"[ 5/2 → 11/4 | note:e ]",
"[ 11/4 → 3/1 | note:g ]",
"[ 3/1 → 13/4 | note:g ]",
"[ 13/4 → 7/2 | note:e ]",
"[ 7/2 → 15/4 | note:d ]",
"[ 15/4 → 4/1 | note:c ]",
]
`;