I am writing a program and stuck with below issue of BigInteger.
BigInteger noOfCombinationForWordsToBeSearchedBig = factorial(noOfWordsToBeSearched);
String[][] combinationForWordsToBeSearched = new String[ noOfCombinationForWordsToBeSearchedBig.longValue()][noOfWordsToBeSearched];
I want to initialize the String[][] array with value of noOfCombinationForWordsToBeSearchedBig .
For examaple, i am finding factorial of 17 which is big integer.
Please advise.