回答編集履歴

1

修正

2020/09/14 06:45

投稿

jeanbiego
jeanbiego

スコア3966

test CHANGED
@@ -1,6 +1,6 @@
1
- itertools.combinations(iterable, r)はiterableから「rの長さ」の組み合わせを返すようです。
1
+ itertools.combinations(iterable, r)はiterableから「長さがr」の組み合わせ全てを返すようです。
2
2
 
3
- (2,8)から1選ぶのですから、(2,)(8,)が出ると。
3
+ (2,8)から長さ1選ぶのですから、(2,)(8,)が出ると。
4
4
 
5
5
  > combinations('ABCD', 2) --> AB AC AD BC BD CD
6
6