Skip to content

Instantly share code, notes, and snippets.

@alexlarkou
Created November 19, 2018 16:27
Show Gist options
  • Save alexlarkou/b40cb83934f0aa404098462cdb7c65ff to your computer and use it in GitHub Desktop.
Save alexlarkou/b40cb83934f0aa404098462cdb7c65ff to your computer and use it in GitHub Desktop.
// c#
int count = schools.count();
double average = allHeights.average()
// java
int count = schools.count();
OptionalDouble average = allHeights.average();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment