src/problems/subs.lisp @ 05bc7da3473f
Update README
author |
Steve Losh <steve@stevelosh.com> |
date |
Sat, 18 Jan 2020 14:04:41 -0500 |
parents |
c26fa4d063ba |
children |
2735aa6aab79 |
(in-package :rosalind)
(defparameter *input-subs* "GATATATGCATATACTT
ATAT")
(defparameter *output-subs* "2 4 10")
(define-problem subs (data stream)
*input-subs*
*output-subs*
(let ((haystack (read-line data))
(needle (read-line data)))
(iterate
(for pos :seed -1 :then (search needle haystack :start2 (1+ pos)))
(while pos)
(collect (1+ pos) :into result)
(finally (return (str:join " " result))))))