Explore common array/list operations: append, insert, delete, search, update, and more
Add element to end - O(1)
Insert at specific index - O(n)
Remove element at index - O(n)
Change value at index - O(1)
Linear search for value - O(n)
Direct access by index - O(1)