tttinkl
Results
1
issues of
tttinkl
``` function assoc(key, records, same_key) { return is_null(records) ? undefined : same_key(key, head(head(records))) ? head(records) : assoc(key, tail(records), same_key); } function make_table(same_key) { const local_table = list("*table"); const get_value =...
Exercise solution