Sujet : Re: How do i get multiple Min() values?
De : Nobody447095 (at) *nospam* here-nor-there.org (B. Pym)
Groupes : comp.lang.python comp.lang.lispDate : 13. Jul 2024, 14:56:23
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <v6tthj$3jj0a$1@dont-email.me>
References : 1
User-Agent : XanaNews/1.18.1.6
HenHanna wrote:
How do i get multiple Min() values?
e.g. for Y = (x-2)*(x-3) for x in range(-10,10)
the min Y is hit twice
print( min( ((x-2)*(x-3), (x, (x-2, x-3)))
for x in range(-10,10) ) )
is this easy in Scheme(Gauche) ?
Gauche Scheme
(use gauche.collection) ;; fold2
(define (min-by fn lst)
(if (null? lst)
(values '() #f)
(fold2
(lambda (x best worth)
(let ((score (fn x)))
(cond ((< score worth) (values (list x) score))
((= score worth) (values (cons x best) worth))
(#t (values best worth)))))
(take lst 1) (fn (car lst))
(cdr lst))))
(min-by (lambda(x) (* (- x 2) (- x 3))) (lrange -10 11))
===>
(3 2)
0