loading

Bisearch with python

Given a list and a target, find if this target exist in this list, return true or false.

                                        
def bisearch(nums:List, target: int) -> bool
    a = 1
    b = 2
                                                
                                        
                                    

DATE: 29/07/2020

LOCATION: Pluto

TAGS: Python