Skip to content
New issue

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

Add mention of swap idiom to 'The Old Switcheroo' exercise #917

Merged
merged 8 commits into from
Apr 6, 2021
3 changes: 2 additions & 1 deletion _extras/extra_exercises.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ or not (yet) added to the main lesson.
> >
> > In the first case we used a temporary variable `temp` to keep the value of `left` before we
> > overwrite it with the value of `right`. In the second case, `right` and `left` are packed into a
> > list and then unpacked into `left` and `right`.
> > [tuple]({{ page.root }}/reference.html#tuple)
maxim-belkin marked this conversation as resolved.
Show resolved Hide resolved
> > and then unpacked into `left` and `right`.
> {: .solution}
{: .challenge}

Expand Down