Created
February 16, 2019 12:34
-
-
Save gavr123456789/1eb233b60d78715cf347cd50c398a341 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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