79289544

Date: 2024-12-17 22:45:15
Score: 1.5
Natty:
Report link

I might be too late ;) My solution to this question would be

(define (index-of s lst) 
    (if (member s lst) 
        (- (length lst) (length (member s lst))) 
        '()))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Birame SENE