我们有一个list A (1 2 3 4 5 2 2 3 3 3 4 6 7)
,我们希望得到这些数字,其中会议数量是<然后他们。
numbers | meets
1 = 1
2 < 3
3 < 4
5 > 1
4 > 2
6 > 1
7 > 1
Example:
Input:
list (1 1 2 3 2 3 4 4 5 5 5 5 5 5)
Output:
(1 3 4)
答案 0 :(得分:1)
我的解决方案,我关注@lbruder评论,但我不清楚为什么1出现在你的输出中,因为如果你检查的是较小且等于2也应该出现
> (define (occurences lst)
(cond ((null? lst) empty)
((< (length (filter (lambda (x) (if (= x (car lst)) x #f)) lst)) (car lst)) (cons (car lst) (occurences (filter (lambda (x) (if (not (= x (car lst))) x #f)) lst))))
(else (occurences (filter (lambda (x) (if (not (= x (car lst))) x #f)) lst)))))
> (occurences '(1 2 3 2 3 4 4 5 5 5 5 5 5))
(3 4)
因此(3 4)
按!<
,我的意思是不小(大于或等于)