From dd80d5d8c9240331c460ac9b9c52a22b98df4bf7 Mon Sep 17 00:00:00 2001 From: Codingdecode <91722434+Codingdecode@users.noreply.github.com> Date: Fri, 1 Oct 2021 10:22:00 -0800 Subject: [PATCH 1/3] Rename array.c to Array.c --- array.c => Array.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename array.c => Array.c (98%) diff --git a/array.c b/Array.c similarity index 98% rename from array.c rename to Array.c index 6cd9dae..19dc0aa 100644 --- a/array.c +++ b/Array.c @@ -7,4 +7,4 @@ int main() printf("%d", arr[3]); return 0; -} \ No newline at end of file +} From 5b34ecd43be29eae9ba94258c47bde298dd7d7ce Mon Sep 17 00:00:00 2001 From: Codingdecode <91722434+Codingdecode@users.noreply.github.com> Date: Fri, 1 Oct 2021 10:23:40 -0800 Subject: [PATCH 2/3] Rename circular linked list.cpp to Circular linked list.cpp --- circular linked list.cpp => Circular linked list.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename circular linked list.cpp => Circular linked list.cpp (99%) diff --git a/circular linked list.cpp b/Circular linked list.cpp similarity index 99% rename from circular linked list.cpp rename to Circular linked list.cpp index c45e887..24b1d05 100644 --- a/circular linked list.cpp +++ b/Circular linked list.cpp @@ -115,4 +115,4 @@ int main() traverse(last); return 0; -} \ No newline at end of file +} From 218d70b900fdf373156dc1d3037d5824c0a075e6 Mon Sep 17 00:00:00 2001 From: Codingdecode <91722434+Codingdecode@users.noreply.github.com> Date: Fri, 1 Oct 2021 10:25:15 -0800 Subject: [PATCH 3/3] Rename doubly linked list.cpp to Doubly linked list.cpp --- doubly linked list.cpp => Doubly linked list.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename doubly linked list.cpp => Doubly linked list.cpp (99%) diff --git a/doubly linked list.cpp b/Doubly linked list.cpp similarity index 99% rename from doubly linked list.cpp rename to Doubly linked list.cpp index bc211e6..e5f320d 100644 --- a/doubly linked list.cpp +++ b/Doubly linked list.cpp @@ -71,4 +71,4 @@ int main() printList(head); return 0; -} \ No newline at end of file +}