79687327

Date: 2025-07-02 11:20:44
Score: 0.5
Natty:
Report link

Another alternative with cl-loop:

(progn
  (setq a (list 1 2 3 4 5 6))
  (cl-loop for v in-ref a
           when (eq v 3)
           do (setf v 22)))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Post Self