Skip to content Skip to sidebar Skip to footer
Showing posts with the label Complexity Theory

Time Complexity Of A Recursive Function With Two Calls

Consider this code: def count_7(lst): if len(lst) == 1: if lst[0] == 7: ret… Read more Time Complexity Of A Recursive Function With Two Calls