我正在尝试构建一组函数来相互比较句子。所以我写了一个函数split-to-sentences
,它接受这样的输入:
"This is a sentence. And so is this. And this one too."
并返回:
["This is a sentence" "And so is this" "And this one too."]
我正在努力解决的是如何迭代这个向量并获取不是当前值的项目。我试着四处寻找drop
,remove
但还没有完全弄清楚。
我想我可以做的一件事是在循环中使用first
and并将前一个值用于 rest 的输出。rest
conj