回答編集履歴

1

修正

2021/12/10 10:55

投稿

tiitoi
tiitoi

スコア21956

test CHANGED
@@ -66,6 +66,16 @@
66
66
 
67
67
  # (1, 2, 1)
68
68
 
69
+
70
+
71
+ import itertools
72
+
73
+
74
+
75
+ for a, b in zip(product(product(A, B), C), itertools.product(A, B, C)):
76
+
77
+ assert a == b # 一致することを確認
78
+
69
79
  ```
70
80
 
71
81