Isabella Hope's latest activity
-
IIsabella Hope posted the thread How Do Mobile Games Handle Resource Optimization for Heavy Graphics? in Computing and Technology.Hi everyone, I’ve been studying how mobile games manage performance, especially those that use heavier graphics, animations, and...
-
IIsabella Hope replied to the thread Why does my loop run slower with larger lists in Python?.Thanks for the detailed explanation this makes things much clearer. I didn’t realize how much overhead comes from Python treating every...
-
IIsabella Hope replied to the thread Why does my loop run slower with larger lists in Python?.Good question! On my machine, creating the list + looping through 1,000,000 items takes around a few hundred milliseconds total. It’s...
-
IIsabella Hope replied to the thread Why does my loop run slower with larger lists in Python?.Thanks for pointing that out I actually didn’t think about the fact that list(range(...)) itself is already an O(n) operation. I was...
-
IIsabella Hope replied to the thread Why does my loop run slower with larger lists in Python?.You’re right the algorithm matters more than the language itself. I’m checking the time complexity now to see whether the slowdown is...
-
IIsabella Hope replied to the thread Insights Thinking Outside The Box Versus Knowing What’s In The Box.oth matter, but in different ways. Thinking outside the box helps you find creative solutions you wouldn’t normally consider. But...
-
IIsabella Hope posted the thread Why does my loop run slower with larger lists in Python? in Programming and Computer Science.Hi everyone, I’m practicing Python and noticed something strange. When I run a simple loop on a small list, it’s fast—but when I run...