src/problems/perm.lisp @ 86d92162dc1f

Update to latest cl-losh
author Steve Losh <steve@stevelosh.com>
date Tue, 14 Dec 2021 19:10:46 -0500
parents 2735aa6aab79
children (none)
(defpackage :rosalind/perm (:use :cl :rosalind :losh :iterate))
(in-package :rosalind/perm)

(defparameter *input* "3")

(defparameter *output* "6
1 2 3
1 3 2
2 1 3
2 3 1
3 1 2
3 2 1")


(define-problem perm (data string) *input* *output*
  (let* ((n (parse-integer data))
         (count (u:factorial n))
         (perms (u:permutations (alexandria:iota n :start 1))))
    (format nil "~D~%~{~A~^~%~}"
            count
            ;; sort to ensure consistent output for the unit test
            (sort (mapcar (u:curry #'u:strjoin " ") perms) #'string<))))