rrachel10351 rrachel10351 08-02-2024 Chemistry 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 outa (2ⁿ)b (log(n))c (n log(n))d (n²)