不同长度且不重复的组合
任何人都可以建议一种简单的方法来获得所有组合而无需重复,并且长度不同?
[0,1,2,3,4]
(2): [0,1],[0,2],[0,3] ... [3,4]
(3 的): [0,1,2],[0,1,3] ... [2,3,4]
(4 的): [0,1,2,3],[0,1,2,4] ... [1,2,3,4]
Can anyone suggest an easy way of getting all combinations without repeats, and with a varying length ?
[0,1,2,3,4]
(2's) :
[0,1],[0,2],[0,3] ... [3,4]
(3's) :
[0,1,2],[0,1,3] ... [2,3,4]
(4's) :
[0,1,2,3],[0,1,2,4] ... [1,2,3,4]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我花了一段时间,但我想我已经在这里了......
这有所有组合,没有重复
took me a while but I think I've got it here...
this has all the combinations without repeats