From f393ef6ba78e12ba6769bc284fac9e9cf9a1ae43 Mon Sep 17 00:00:00 2001 From: sudipbanfse <70449984+sudipbanfse@users.noreply.github.com> Date: Wed, 18 Sep 2024 10:25:26 +0530 Subject: [PATCH] Added more extensive time complexities --- Data Structures - Arrays/Arrays.py | 68 ++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) diff --git a/Data Structures - Arrays/Arrays.py b/Data Structures - Arrays/Arrays.py index 7a2b464..e0dc890 100644 --- a/Data Structures - Arrays/Arrays.py +++ b/Data Structures - Arrays/Arrays.py @@ -39,3 +39,71 @@ #to implement arrays as a stack #https://docs.python.org/3/library/collections.html#collections.deque +In Python, lists are implemented as dynamic arrays, and the time complexity for various operations can be described using Big O notation. Here are the common operations and their time complexities: + +# + + + +