Coding challenges
                                    Completion requirements
                                    
            
                            
                        
            
    
            
                                    
                                        
                                    
                                
                        
                        
                        
                        
                    
                Due: Thursday, 16 April 2020, 12:00 AM
            
    - consider the following function
- input: array of integers
- output: minimum of these numbers
 
- input: array of integers
- write the pseudocode for your algorithm
- implement it in Python
- calculate the runtime
 - best case
- worst case
 
- is your function iterative or recursive?
- how would you convert it to an iterative or recursive function?
 
