我如何将列表列表中的任何元素总结,而在prolog中等于5?
我是新手学习序言的新手。我想实现以下谓词。
equalto5([[1,'a'],[3,'b'],[2,'b'],[1,'b'],[4,'c']], X) --input
按列表列表中的第一个元素删除所有重复的数字,请勿通过第二元素删除重复的字母。
像这样:等于5([[[1,'a'],[3,'b'],[2,'b'],[4,'c']],x),
然后找到根据列表列表中的第一个元素等于5的所有可能结果
X =[1,4]; [2,3].
I‘m new to learn the Prolog. I want to fulfill the below predicate.
equalto5([[1,'a'],[3,'b'],[2,'b'],[1,'b'],[4,'c']], X) --input
remove all the duplicated numbers by the first element in the list of lists, Don't remove the duplicated letters by the second element.
like this: equalto5([[1,'a'],[3,'b'],[2,'b'],[4,'c']], X)
then find all possible results that equal 5 based on the first element in the list of lists
X =[1,4]; [2,3].
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)