I'm trying to figure out the time complexity associated with O(n) and O(2^n) when the values for n are 100, 1000, 10000, and 100000 regarding O(n), and 5, 10, 15, 20, 25, 30 when trying O(2^n). Running each value of n independently is fine, as I am going to create a table to show the different run times. But I seem to be stuck in some type of loop, or just have incorrect code. If anyone sees a red flag in my code, would you please point me in the right direction? Thanks!