src/problems/iev.lisp @ 93ba483d9bc9

Move function
author Steve Losh <steve@stevelosh.com>
date Sun, 25 Aug 2019 22:59:19 -0400
parents 474d88a2af2e
children 2735aa6aab79
(in-package :rosalind)

(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)))
    (float-string
      ;; It's just a weighted averageā€¦
      (* 2 (+ (* dd 1)
              (* dh 1)
              (* dr 1)
              (* hh 3/4)
              (* hr 1/2)
              (* rr 0)))
      4)))