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 · 3 comments
Open

Solution to Exercise 4.1 #871

jonathantorres opened this issue Mar 9, 2023 · 3 comments
Labels
Exercise solution Solutions to textbook exercises _work in progress

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))
        );
}

@martin-henz
Copy link
Member

None of your solutions are correct. In your solutions, the evaluation order of arguments depends on the evaluation order of arguments of pair and append.

@martin-henz martin-henz added _work in progress Exercise solution Solutions to textbook exercises labels Jul 1, 2024
@tch1001
Copy link

tch1001 commented Oct 27, 2024

does this work?

// left to right
function list_of_values_left_to_right(exps, env) {
    return is_null(exps) ? null : (() => {
            const fst = evaluate(head(exps), env);
            const snd = list_of_values_left_to_right(tail(exps),env);
            return pair(fst, snd);
    })();
}
// right to left
function list_of_values_right_to_left(exps, env){
    return is_null(exps) ? null : (() => {
            const snd = list_of_values_right_to_left(tail(exps),env);
            const fst = evaluate(head(exps), env);
            return pair(fst, snd);
    })();
}

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 _work in progress
Projects
None yet
Development

No branches or pull requests

4 participants