For an assignment, we must implement an input like a very basic sexp parser, such as:
“((ab) ((cd) e) f)” It will return:
[[“a”, “b”], [[“c”, “d”], “e”], “f”] Since this is part of a la
For an assignment, we must implement an input like a very basic sexp parser, such as:
“((ab) ((cd) e) f)” It will return:
[[“a”, “b”], [[“c”, “d”], “e”], “f”] Since this is part of a la