We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://share.sourceacademy.org/vwwjn
The arrow should point to the first pair of xs, not between the first and the second pair.
const append = (xs, ys) => is_null(xs) ? ys : pair(head(xs), append(tail(xs), ys)); append(list(1,2), list(3));
The text was updated successfully, but these errors were encountered:
For reference: it is step number 29 out of 69 (and seems to be only affecting step 29)
Sorry, something went wrong.
No branches or pull requests
https://share.sourceacademy.org/vwwjn
The arrow should point to the first pair of xs, not between the first and the second pair.
The text was updated successfully, but these errors were encountered: