Skip to content

Instantly share code, notes, and snippets.

@zagorulkinde
Last active November 13, 2018 11:53
Show Gist options
  • Save zagorulkinde/c8147920cf9307eeccd93fd8cdbd85f3 to your computer and use it in GitHub Desktop.
Save zagorulkinde/c8147920cf9307eeccd93fd8cdbd85f3 to your computer and use it in GitHub Desktop.
factorial as a stream
class StreamTest {
public static long factorial(long n) {
return LongStream.range(1, n+1).reduce(1, (a,b) -> a*b);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment