質問編集履歴
1
tmp.Clear()の場所がおかしかったので、修正しました。
title
CHANGED
File without changes
|
body
CHANGED
@@ -21,9 +21,10 @@
|
|
21
21
|
if(x > 5)
|
22
22
|
{
|
23
23
|
tmp.Add(x);
|
24
|
-
if (tmp.Count() >= 2)
|
24
|
+
if (tmp.Count() >= 2){
|
25
25
|
input_frame.Add(tmp);
|
26
|
-
|
26
|
+
tmp.Clear();
|
27
|
+
}
|
27
28
|
}
|
28
29
|
}
|
29
30
|
|