Lisp Condense
Reduce 4 cons selection operations down to one function call.
Start file
(print (car (car (cdr (car list)))))
End file
(print (caadar list))
View Diff
1c1 < (print (car (car (cdr (car list))))) --- > (print (caadar list))
Solutions by @Caek_:
Unlock 3 remaining solutions by signing in and submitting your own entry