質問編集履歴

1

can110さんからのご提案を反映しました

2020/02/07 09:37

投稿

matac
matac

スコア5

test CHANGED
File without changes
test CHANGED
@@ -45,3 +45,63 @@
45
45
 
46
46
 
47
47
  GoogleColab Python3
48
+
49
+
50
+
51
+ ####sumについての例です
52
+
53
+
54
+
55
+ ######シンプルな入力例
56
+
57
+ |Annotation|cor_res|
58
+
59
+ |:--:|:--:|
60
+
61
+ |0|0|
62
+
63
+ |1|1|
64
+
65
+ |2|0|
66
+
67
+ |3|1|
68
+
69
+ |0|1|
70
+
71
+ |1|1|
72
+
73
+ |2|1|
74
+
75
+ |3|1|
76
+
77
+
78
+
79
+ ######期待される結果
80
+
81
+ |Annotation|cor_res|
82
+
83
+ |:--:|:--:|
84
+
85
+ |0|1|
86
+
87
+ |1|2|
88
+
89
+ |2|1|
90
+
91
+ |3|2|
92
+
93
+
94
+
95
+ ######実際の結果
96
+
97
+ |Annotation|cor_res|
98
+
99
+ |:--:|:--:|
100
+
101
+ |0|6|
102
+
103
+ |1|6|
104
+
105
+ |2|6|
106
+
107
+ |3|6|