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.1 #871

Open
jonathantorres opened this issue Mar 9, 2023 · 1 comment
Open

Solution to Exercise 4.1 #871

jonathantorres opened this issue Mar 9, 2023 · 1 comment

Comments

@jonathantorres
Copy link
Contributor

function list_of_values_left(exps, env) {
    function loop(exps) {
        if (is_null(exps)) {
            return null;
        }
        return pair(evaluate(head(exps), env), loop(tail(exps)));
    }
    return loop(exps);
}

function list_of_values_right(exps, env) {
    return reverse(list_of_values_left(reverse(exps), env));
}
@EmilyOng
Copy link

Sharing an alternative as well :)

// Left-To-Right
function list_of_values(exps, env) {
    return is_null(exps)
        ? null
        : pair(
            evaluate(head(exps), env),
	    list_of_values(tail(exps), env)
        );
}
// Right-To-Left
function list_of_values(exps, env) {
    return is_null(exps)
        ? null
        : append(
            list_of_values(tail(exps), env),
            list(evaluate(head(exps), env))
        );
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants