We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8333f13 commit f5ff9b7Copy full SHA for f5ff9b7
snippets/java/math/factorial.md
@@ -6,6 +6,8 @@ tags: math,number,factorial
6
---
7
8
```java
9
+import java.math.BigInteger;
10
+
11
public static BigInteger factorial(int number) {
12
BigInteger result = BigInteger.ONE;
13
0 commit comments