質問編集履歴

1

tmp.Clear()の場所がおかしかったので、修正しました。

2021/01/15 14:09

投稿

program_test
program_test

スコア3

test CHANGED
File without changes
test CHANGED
@@ -44,11 +44,13 @@
44
44
 
45
45
  tmp.Add(x);
46
46
 
47
- if (tmp.Count() >= 2)
47
+ if (tmp.Count() >= 2){
48
48
 
49
49
  input_frame.Add(tmp);
50
50
 
51
- tmp.Clear();
51
+ tmp.Clear();
52
+
53
+ }
52
54
 
53
55
  }
54
56