gpt4 book ai didi

javascript - 找出所有可能的组合

转载 作者:行者123 更新时间:2023-11-28 11:58:02 26 4
gpt4 key购买 nike

我的大脑不工作,这并不是真正的排列,例如,给定输入:

ab

我想要:

aa
ab
bb
ba

我不太确定从哪里开始。

最佳答案

在 Python 中,使用 itertools.product :

>>> for xs in itertools.product('ab', repeat=2): # 2 == len('ab')
... print(xs)
...
('a', 'a')
('a', 'b')
('b', 'a')
('b', 'b')
>>> for xs in itertools.product('ab', repeat=2):
... print(''.join(xs))
...
aa
ab
ba
bb

关于javascript - 找出所有可能的组合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19344910/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com