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

Solution to Exercise 4.33 #880

Closed
jonathantorres opened this issue Apr 1, 2023 · 0 comments · Fixed by #1037
Closed

Solution to Exercise 4.33 #880

jonathantorres opened this issue Apr 1, 2023 · 0 comments · Fixed by #1037
Labels
Exercise solution Solutions to textbook exercises

Comments

@jonathantorres
Copy link
Contributor

function an_integer_between(low, high) {
    require(low <= high);
    return amb(low, an_integer_between(low+1, high));
}
martin-henz added a commit that referenced this issue Jul 1, 2024
@martin-henz martin-henz added the Exercise solution Solutions to textbook exercises label Jul 1, 2024
@RichDom2185 RichDom2185 linked a pull request Jul 10, 2024 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Exercise solution Solutions to textbook exercises
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants