3

如何接受以下输入?

(list of 0 or more charcters and ends with 3) or   
(list of 1 or more characters 4 and  0 or more characters after 4)

就像是

(match ( list 3)) -> #t
(match ( list 1  2 3)) -> #t
(match (list 1 2 3 4)) -> #t
(match (list 1 2 3 4 5)) -> #t
(match (list 4)) -> #f

编辑:这不是我的作业。我试图从 PAIP 写出类似 ELIZA 的东西,但我只知道如何写一个以单词开头的模式。

4

1 回答 1

3

您提到了字符,但随后在您的示例中使用了数字。我在这里使用数字,但切换到字符是微不足道的。

(require scheme/match)
(define satisfies
  (match-lambda
    [(list (? number?) ... 3) #t]
    [(list (? number?) ..1 4 (? number?) ...) #t]
    [_ #f]))
于 2009-06-28T03:26:41.650 回答