You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: exercises/practice/go-counting/.meta/Generator.tpl
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,6 @@
1
1
using System;
2
2
using System.Collections.Generic;
3
+
using System.Linq;
3
4
using Xunit;
4
5
5
6
public class {{ testClass }}
@@ -26,7 +27,7 @@ public class {{ testClass }}
26
27
var expectedOwner = {{ test.expected.owner | string.downcase | enum "Owner"}};
27
28
var expectedCoordinates = new HashSet<(int, int)>{{ if test.expected.territory.empty? }}(){{ else}}{ {{ for territory in test.expected.territory }}({{ territory | array.join ", "}}){{ if!for.last }}, {{ end }}{{ end }} }{{ end }};
0 commit comments