문제 설명https://school.programmers.co.kr/learn/courses/30/lessons/120840 제한 사항 입출력 예 풀이import java.util.stream.Stream;import java.math.BigInteger;class Solution { public int solution(int balls, int share) { return (getFactorial(balls).divide( getFactorial(balls - share).multiply( getFactorial(share)) ) ).intValue(); } private BigIntege..