Skip to content

Instantly share code, notes, and snippets.

@gavr123456789
Created February 16, 2019 12:34
Show Gist options
  • Save gavr123456789/1eb233b60d78715cf347cd50c398a341 to your computer and use it in GitHub Desktop.
Save gavr123456789/1eb233b60d78715cf347cd50c398a341 to your computer and use it in GitHub Desktop.
void main(string[] args) {
int[,] d = {{0, 1},
{1, 0}};
int c=0;
foreach (var a in d)
if(a==1) c++;
print(@"Roads: $(c/2)");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment