fix(curriculum): use 'concatenate' instead of 'append' in workshop-pin-extractor (#66143)

This commit is contained in:
XYZ
2026-02-28 21:21:44 +05:30
committed by GitHub
parent d9a5bee639
commit d824be8a06
@@ -9,7 +9,7 @@ dashedName: step-15
The third line of the poem is missing a third word, so the pin is shorter than expected.
Add an `else` clause that appends a `'0'` to `secret_code` when there are not enough words, so that all lines of the poem are used to find digits.
Add an `else` clause that concatenates a `'0'` to `secret_code` when there are not enough words, so that all lines of the poem are used to find digits.
# --hints--