alexusjones1156 alexusjones1156 16-02-2024 Mathematics contestada What is the time complexity of the below algorithm? def myfunction(n): if n < 2: out = 1 else: out = myfunction(n-1) + myfunction(n-2) return out