Problem
Count the number occurrence in a list, they must be adjacent. Ex: (a a b b c c a e), returns
( (a 2) (b 2) (c 2) (a 1) (e 1) ).
I tried,
(define (loop lst)
(let ((i 1) (j 0))
(do ()
[(> j (- (length lst) 2))]
(if (eq? (car lst) (cadr lst))
(set! i (+ i 1))
(display i)
)
(
(set! lst (cdr lst))
(set! j (+ j 1))
)
)
)
)
When running, DrScheme complained
procedure application: expected procedure, given: #<void>; arguments were: #<void>
How can I use multiple statements inside an if or a do loop like this?
Thanks,
fold-based answer. Once you get the hang offold,map, etc., you won't want to use imperative-style loops again. :-) (I just retracted my downvote, BTW. Thanks for explaining your task.) – Chris Jester-Young Apr 22 '11 at 6:45