src/problems/iev.lisp @ de8dff345414
CORR
author | Steve Losh <steve@stevelosh.com> |
---|---|
date | Tue, 14 Dec 2021 19:11:27 -0500 |
parents | 2735aa6aab79 |
children | (none) |
(defpackage :rosalind/iev (:use :cl :rosalind :losh :iterate)) (in-package :rosalind/iev) (define-problem iev (data stream) "1 0 0 1 0 1" "3.5000" (let* ((dd (read data)) (dh (read data)) (dr (read data)) (hh (read data)) (hr (read data)) (rr (read data))) (u:float-string ;; It's just a weighted averageā¦ (* 2 (+ (* dd 1) (* dh 1) (* dr 1) (* hh 3/4) (* hr 1/2) (* rr 0))) 4)))