''' Purpose: solves the determine.py problem on test 3 ''' def factorial( n ) : pass def combinations( n, k ) : pass if ( __name__ == '__main__' ) : import t3 t3.test_factorial() print() t3.test_combinations()