The Algorithms logoThe Algorithms
About
"""
    combination(n, r)
        
returns the number of ways picking r unordered outcomes from
n possibilities, without repetition

# Arguments:
- `n`: Positive integers of items to choose from
- 'r': Positive integers of items to choose

Contributed By:- [Mayur Dahibhate](https://github.com/mayurdahibhate)
"""

function combination(n, r)

    function factorial(n)        
        fact = 1
        
        if n == 0 || n == 1
            return fact
        end
         
        for i = 1:n
            fact = fact * i
        end 
        
        return fact
    end
    
    comb = factorial(n) / (factorial(r) * factorial(n - r))

    return convert(Int64, comb)
end

Combination

M