From d2608ade831ebbfee49c9846f3207820956a5e2b Mon Sep 17 00:00:00 2001 From: Amal Bijoy Date: Sun, 5 Apr 2026 22:26:00 +0530 Subject: [PATCH] Fix grammar in Data Structures definition --- Notes/Day-1-intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Notes/Day-1-intro.md b/Notes/Day-1-intro.md index 5d1c5e3..5d22a0d 100644 --- a/Notes/Day-1-intro.md +++ b/Notes/Day-1-intro.md @@ -10,7 +10,7 @@ It defines the kind of data a variable can hold and the operations that can be 2. ## Derived data types: These are the data type that are constructed using one or more built-in types and operators. They are typically used to model more complex data structures and are often language independent in concept. Ex: Arrays, List, Stack, Queue, Trees, etc. These structures are fundamentals for organizing and manipulating collections. ## Data Structures: -It is is a way to organize, store and manage data, so that it can be used efficiently in a computer program. +It is a way to organize, store, and manage data, so that it can be used efficiently in a computer program. It defines: - How data can be stored in memory. - How you can access and manipulate it.