From 1a6dd921ee6ee805f1bbcc26a0d72ca22cc86ccd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Csujitmemane=E2=80=9D?= <“officialsujitmemane@gmail.comgit config --global user.name “sujitmemane”git config --global user.email “officialsujitmemane@gmail.com> Date: Mon, 2 Oct 2023 13:18:57 +0530 Subject: [PATCH 1/3] Added DSA files and List in Sidebar --- config/sidebar.ts | 57 +++++++++++++++++++++++++++ content/batch/dsa/array.mdx | 10 +++++ content/batch/dsa/linked-list.mdx | 10 +++++ content/batch/dsa/loops.mdx | 10 +++++ content/batch/dsa/objects.mdx | 10 +++++ content/batch/dsa/polyfills.mdx | 10 +++++ content/batch/dsa/queue.mdx | 10 +++++ content/batch/dsa/recursion.mdx | 10 +++++ content/batch/dsa/search.mdx | 10 +++++ content/batch/dsa/set-map.mdx | 10 +++++ content/batch/dsa/sorting.mdx | 10 +++++ content/batch/dsa/stack.mdx | 10 +++++ content/batch/dsa/string.mdx | 10 +++++ content/batch/dsa/time-complexity.mdx | 10 +++++ 14 files changed, 187 insertions(+) create mode 100644 content/batch/dsa/array.mdx create mode 100644 content/batch/dsa/linked-list.mdx create mode 100644 content/batch/dsa/loops.mdx create mode 100644 content/batch/dsa/objects.mdx create mode 100644 content/batch/dsa/polyfills.mdx create mode 100644 content/batch/dsa/queue.mdx create mode 100644 content/batch/dsa/recursion.mdx create mode 100644 content/batch/dsa/search.mdx create mode 100644 content/batch/dsa/set-map.mdx create mode 100644 content/batch/dsa/sorting.mdx create mode 100644 content/batch/dsa/stack.mdx create mode 100644 content/batch/dsa/string.mdx create mode 100644 content/batch/dsa/time-complexity.mdx diff --git a/config/sidebar.ts b/config/sidebar.ts index f58d6be..6ae285f 100644 --- a/config/sidebar.ts +++ b/config/sidebar.ts @@ -78,6 +78,63 @@ export const docsConfig: DocsConfig = { } ], }, + + { + title:"DSA in Javascript", + items: [ + { + title: "Loops", + href: "/batch/dsa/loops", + }, + { + title: "Time Complexity", + href: "/batch/dsa/time-complexity", + }, + { + title: "Array", + href: "/batch/dsa/array", + }, + { + title: "Polyfills", + href: "/batch/dsa/polyfills", + }, + { + title: "String", + href: "/batch/dsa/string", + }, + { + title: "Recursion", + href: "/batch/dsa/recursion", + }, + { + title: "Linear & Binary Search", + href: "/batch/dsa/search", + }, + { + title: "Objects", + href: "/batch/dsa/objects", + }, + { + title: "Sorting", + href: "/batch/dsa/sorting", + }, + { + title: "Set and Map", + href: "/batch/dsa/set-map", + },{ + title: "Linked List", + href: "/batch/dsa/linked-list", + }, + { + title: "Stack", + href: "/batch/dsa/stack", + }, + { + title: "Queue", + href: "/batch/dsa/queue", + }, + ], + }, { title: "Build Batch", items: [ diff --git a/content/batch/dsa/array.mdx b/content/batch/dsa/array.mdx new file mode 100644 index 0000000..4b5fb89 --- /dev/null +++ b/content/batch/dsa/array.mdx @@ -0,0 +1,10 @@ +--- +title: Arrays +description: Learn Arrays in JavaScript +--- + + + +Want to improve this page?. Raise a issue on [@github](https://github.com/ManishBisht777/frontend-freaks-website). + + \ No newline at end of file diff --git a/content/batch/dsa/linked-list.mdx b/content/batch/dsa/linked-list.mdx new file mode 100644 index 0000000..bca5487 --- /dev/null +++ b/content/batch/dsa/linked-list.mdx @@ -0,0 +1,10 @@ +--- +title: Linked List +description: Learn Linked List in JavaScript +--- + + + +Want to improve this page?. Raise a issue on [@github](https://github.com/ManishBisht777/frontend-freaks-website). + + \ No newline at end of file diff --git a/content/batch/dsa/loops.mdx b/content/batch/dsa/loops.mdx new file mode 100644 index 0000000..b17a8d8 --- /dev/null +++ b/content/batch/dsa/loops.mdx @@ -0,0 +1,10 @@ +--- +title: Loops +description: Learn Loops in JavaScript +--- + + + +Want to improve this page?. Raise a issue on [@github](https://github.com/ManishBisht777/frontend-freaks-website). + + \ No newline at end of file diff --git a/content/batch/dsa/objects.mdx b/content/batch/dsa/objects.mdx new file mode 100644 index 0000000..227c02a --- /dev/null +++ b/content/batch/dsa/objects.mdx @@ -0,0 +1,10 @@ +--- +title: Objects +description: Learn Objects in JavaScript +--- + + + +Want to improve this page?. Raise a issue on [@github](https://github.com/ManishBisht777/frontend-freaks-website). + + \ No newline at end of file diff --git a/content/batch/dsa/polyfills.mdx b/content/batch/dsa/polyfills.mdx new file mode 100644 index 0000000..414fdcb --- /dev/null +++ b/content/batch/dsa/polyfills.mdx @@ -0,0 +1,10 @@ +--- +title: Polyfills +description: Learn Polyfills in JavaScript +--- + + + +Want to improve this page?. Raise a issue on [@github](https://github.com/ManishBisht777/frontend-freaks-website). + + \ No newline at end of file diff --git a/content/batch/dsa/queue.mdx b/content/batch/dsa/queue.mdx new file mode 100644 index 0000000..c42341f --- /dev/null +++ b/content/batch/dsa/queue.mdx @@ -0,0 +1,10 @@ +--- +title: Queue +description: Learn Queue in JavaScript +--- + + + +Want to improve this page?. Raise a issue on [@github](https://github.com/ManishBisht777/frontend-freaks-website). + + \ No newline at end of file diff --git a/content/batch/dsa/recursion.mdx b/content/batch/dsa/recursion.mdx new file mode 100644 index 0000000..af33ddb --- /dev/null +++ b/content/batch/dsa/recursion.mdx @@ -0,0 +1,10 @@ +--- +title: Recursion +description: Learn Recursion in JavaScript +--- + + + +Want to improve this page?. Raise a issue on [@github](https://github.com/ManishBisht777/frontend-freaks-website). + + \ No newline at end of file diff --git a/content/batch/dsa/search.mdx b/content/batch/dsa/search.mdx new file mode 100644 index 0000000..4bf8961 --- /dev/null +++ b/content/batch/dsa/search.mdx @@ -0,0 +1,10 @@ +--- +title: Search +description: Lear Search in JavaScript +--- + + + +Want to improve this page?. Raise a issue on [@github](https://github.com/ManishBisht777/frontend-freaks-website). + + \ No newline at end of file diff --git a/content/batch/dsa/set-map.mdx b/content/batch/dsa/set-map.mdx new file mode 100644 index 0000000..c29c2d8 --- /dev/null +++ b/content/batch/dsa/set-map.mdx @@ -0,0 +1,10 @@ +--- +title: Set & Map +description: Learn Set and Map in JavaScript +--- + + + +Want to improve this page?. Raise a issue on [@github](https://github.com/ManishBisht777/frontend-freaks-website). + + \ No newline at end of file diff --git a/content/batch/dsa/sorting.mdx b/content/batch/dsa/sorting.mdx new file mode 100644 index 0000000..534db49 --- /dev/null +++ b/content/batch/dsa/sorting.mdx @@ -0,0 +1,10 @@ +--- +title: Sorting +description: Learn Sorting in JavaScript +--- + + + +Want to improve this page?. Raise a issue on [@github](https://github.com/ManishBisht777/frontend-freaks-website). + + \ No newline at end of file diff --git a/content/batch/dsa/stack.mdx b/content/batch/dsa/stack.mdx new file mode 100644 index 0000000..ea617a5 --- /dev/null +++ b/content/batch/dsa/stack.mdx @@ -0,0 +1,10 @@ +--- +title: Stack +description: Learn Stack in JavaScript +--- + + + +Want to improve this page?. Raise a issue on [@github](https://github.com/ManishBisht777/frontend-freaks-website). + + \ No newline at end of file diff --git a/content/batch/dsa/string.mdx b/content/batch/dsa/string.mdx new file mode 100644 index 0000000..223856f --- /dev/null +++ b/content/batch/dsa/string.mdx @@ -0,0 +1,10 @@ +--- +title: String +description: Learn String in JavaScript +--- + + + +Want to improve this page?. Raise a issue on [@github](https://github.com/ManishBisht777/frontend-freaks-website). + + \ No newline at end of file diff --git a/content/batch/dsa/time-complexity.mdx b/content/batch/dsa/time-complexity.mdx new file mode 100644 index 0000000..087aa98 --- /dev/null +++ b/content/batch/dsa/time-complexity.mdx @@ -0,0 +1,10 @@ +--- +title: Time Complexity +description: Learn Time Complexity in JavaScript +--- + + + +Want to improve this page?. Raise a issue on [@github](https://github.com/ManishBisht777/frontend-freaks-website). + + \ No newline at end of file From 5bfe4fbefa90622d6e2ba184b465055978ce0897 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Csujitmemane=E2=80=9D?= <“officialsujitmemane@gmail.comgit config --global user.name “sujitmemane”git config --global user.email “officialsujitmemane@gmail.com> Date: Mon, 2 Oct 2023 14:22:01 +0530 Subject: [PATCH 2/3] Fixed Link and Added Basic and Advcance Sorting --- content/batch/dsa/advance-sorting.mdx | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 content/batch/dsa/advance-sorting.mdx diff --git a/content/batch/dsa/advance-sorting.mdx b/content/batch/dsa/advance-sorting.mdx new file mode 100644 index 0000000..002477b --- /dev/null +++ b/content/batch/dsa/advance-sorting.mdx @@ -0,0 +1,10 @@ +--- +title:Advance Sorting +description: Learn Advance Sorting in JavaScript +--- + + + +Want to improve this page?. Raise a issue on [@github](https://github.com/FrontendFreaks/Official-Website). + + \ No newline at end of file From d683a0e01970946864ca782e86035611279a4a4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Csujitmemane=E2=80=9D?= <“officialsujitmemane@gmail.comgit config --global user.name “sujitmemane”git config --global user.email “officialsujitmemane@gmail.com> Date: Mon, 2 Oct 2023 14:22:11 +0530 Subject: [PATCH 3/3] Fixed Link --- config/sidebar.ts | 8 ++++++-- content/batch/dsa/array.mdx | 3 +-- content/batch/dsa/{sorting.mdx => basic-sorting.mdx} | 5 ++--- content/batch/dsa/linked-list.mdx | 3 +-- content/batch/dsa/loops.mdx | 3 +-- content/batch/dsa/objects.mdx | 3 +-- content/batch/dsa/polyfills.mdx | 3 +-- content/batch/dsa/queue.mdx | 3 +-- content/batch/dsa/recursion.mdx | 3 +-- content/batch/dsa/search.mdx | 3 +-- content/batch/dsa/set-map.mdx | 3 +-- content/batch/dsa/stack.mdx | 3 +-- content/batch/dsa/string.mdx | 3 +-- content/batch/dsa/time-complexity.mdx | 3 +-- 14 files changed, 20 insertions(+), 29 deletions(-) rename content/batch/dsa/{sorting.mdx => basic-sorting.mdx} (66%) diff --git a/config/sidebar.ts b/config/sidebar.ts index 6ae285f..3bcd57a 100644 --- a/config/sidebar.ts +++ b/config/sidebar.ts @@ -115,8 +115,12 @@ export const docsConfig: DocsConfig = { href: "/batch/dsa/objects", }, { - title: "Sorting", - href: "/batch/dsa/sorting", + title: "Basic Sorting", + href: "/batch/dsa/basic-sorting", + }, + { + title: "Advance Sorting", + href: "/batch/dsa/advance-sorting", }, { title: "Set and Map", diff --git a/content/batch/dsa/array.mdx b/content/batch/dsa/array.mdx index 4b5fb89..7db3516 100644 --- a/content/batch/dsa/array.mdx +++ b/content/batch/dsa/array.mdx @@ -5,6 +5,5 @@ description: Learn Arrays in JavaScript -Want to improve this page?. Raise a issue on [@github](https://github.com/ManishBisht777/frontend-freaks-website). - +Want to improve this page?. Raise a issue on [@github](https://github.com/FrontendFreaks/Official-Website). \ No newline at end of file diff --git a/content/batch/dsa/sorting.mdx b/content/batch/dsa/basic-sorting.mdx similarity index 66% rename from content/batch/dsa/sorting.mdx rename to content/batch/dsa/basic-sorting.mdx index 534db49..982386c 100644 --- a/content/batch/dsa/sorting.mdx +++ b/content/batch/dsa/basic-sorting.mdx @@ -1,10 +1,9 @@ --- -title: Sorting +title: Basic Sorting description: Learn Sorting in JavaScript --- -Want to improve this page?. Raise a issue on [@github](https://github.com/ManishBisht777/frontend-freaks-website). - +Want to improve this page?. Raise a issue on [@github](https://github.com/FrontendFreaks/Official-Website). \ No newline at end of file diff --git a/content/batch/dsa/linked-list.mdx b/content/batch/dsa/linked-list.mdx index bca5487..e0f4689 100644 --- a/content/batch/dsa/linked-list.mdx +++ b/content/batch/dsa/linked-list.mdx @@ -5,6 +5,5 @@ description: Learn Linked List in JavaScript -Want to improve this page?. Raise a issue on [@github](https://github.com/ManishBisht777/frontend-freaks-website). - +Want to improve this page?. Raise a issue on [@github](https://github.com/FrontendFreaks/Official-Website). \ No newline at end of file diff --git a/content/batch/dsa/loops.mdx b/content/batch/dsa/loops.mdx index b17a8d8..e8fdfa4 100644 --- a/content/batch/dsa/loops.mdx +++ b/content/batch/dsa/loops.mdx @@ -5,6 +5,5 @@ description: Learn Loops in JavaScript -Want to improve this page?. Raise a issue on [@github](https://github.com/ManishBisht777/frontend-freaks-website). - +Want to improve this page?. Raise a issue on [@github](https://github.com/FrontendFreaks/Official-Website). \ No newline at end of file diff --git a/content/batch/dsa/objects.mdx b/content/batch/dsa/objects.mdx index 227c02a..4436b35 100644 --- a/content/batch/dsa/objects.mdx +++ b/content/batch/dsa/objects.mdx @@ -5,6 +5,5 @@ description: Learn Objects in JavaScript -Want to improve this page?. Raise a issue on [@github](https://github.com/ManishBisht777/frontend-freaks-website). - +Want to improve this page?. Raise a issue on [@github](https://github.com/FrontendFreaks/Official-Website). \ No newline at end of file diff --git a/content/batch/dsa/polyfills.mdx b/content/batch/dsa/polyfills.mdx index 414fdcb..e47906c 100644 --- a/content/batch/dsa/polyfills.mdx +++ b/content/batch/dsa/polyfills.mdx @@ -5,6 +5,5 @@ description: Learn Polyfills in JavaScript -Want to improve this page?. Raise a issue on [@github](https://github.com/ManishBisht777/frontend-freaks-website). - +Want to improve this page?. Raise a issue on [@github](https://github.com/FrontendFreaks/Official-Website). \ No newline at end of file diff --git a/content/batch/dsa/queue.mdx b/content/batch/dsa/queue.mdx index c42341f..afb7bee 100644 --- a/content/batch/dsa/queue.mdx +++ b/content/batch/dsa/queue.mdx @@ -5,6 +5,5 @@ description: Learn Queue in JavaScript -Want to improve this page?. Raise a issue on [@github](https://github.com/ManishBisht777/frontend-freaks-website). - +Want to improve this page?. Raise a issue on [@github](https://github.com/FrontendFreaks/Official-Website). \ No newline at end of file diff --git a/content/batch/dsa/recursion.mdx b/content/batch/dsa/recursion.mdx index af33ddb..1f6a3e6 100644 --- a/content/batch/dsa/recursion.mdx +++ b/content/batch/dsa/recursion.mdx @@ -5,6 +5,5 @@ description: Learn Recursion in JavaScript -Want to improve this page?. Raise a issue on [@github](https://github.com/ManishBisht777/frontend-freaks-website). - +Want to improve this page?. Raise a issue on [@github](https://github.com/FrontendFreaks/Official-Website). \ No newline at end of file diff --git a/content/batch/dsa/search.mdx b/content/batch/dsa/search.mdx index 4bf8961..e3d2199 100644 --- a/content/batch/dsa/search.mdx +++ b/content/batch/dsa/search.mdx @@ -5,6 +5,5 @@ description: Lear Search in JavaScript -Want to improve this page?. Raise a issue on [@github](https://github.com/ManishBisht777/frontend-freaks-website). - +Want to improve this page?. Raise a issue on [@github](https://github.com/FrontendFreaks/Official-Website). \ No newline at end of file diff --git a/content/batch/dsa/set-map.mdx b/content/batch/dsa/set-map.mdx index c29c2d8..3acd83d 100644 --- a/content/batch/dsa/set-map.mdx +++ b/content/batch/dsa/set-map.mdx @@ -5,6 +5,5 @@ description: Learn Set and Map in JavaScript -Want to improve this page?. Raise a issue on [@github](https://github.com/ManishBisht777/frontend-freaks-website). - +Want to improve this page?. Raise a issue on [@github](https://github.com/FrontendFreaks/Official-Website). \ No newline at end of file diff --git a/content/batch/dsa/stack.mdx b/content/batch/dsa/stack.mdx index ea617a5..c57a544 100644 --- a/content/batch/dsa/stack.mdx +++ b/content/batch/dsa/stack.mdx @@ -5,6 +5,5 @@ description: Learn Stack in JavaScript -Want to improve this page?. Raise a issue on [@github](https://github.com/ManishBisht777/frontend-freaks-website). - +Want to improve this page?. Raise a issue on [@github](https://github.com/FrontendFreaks/Official-Website). \ No newline at end of file diff --git a/content/batch/dsa/string.mdx b/content/batch/dsa/string.mdx index 223856f..92fac0d 100644 --- a/content/batch/dsa/string.mdx +++ b/content/batch/dsa/string.mdx @@ -5,6 +5,5 @@ description: Learn String in JavaScript -Want to improve this page?. Raise a issue on [@github](https://github.com/ManishBisht777/frontend-freaks-website). - +Want to improve this page?. Raise a issue on [@github](https://github.com/FrontendFreaks/Official-Website). \ No newline at end of file diff --git a/content/batch/dsa/time-complexity.mdx b/content/batch/dsa/time-complexity.mdx index 087aa98..36455fe 100644 --- a/content/batch/dsa/time-complexity.mdx +++ b/content/batch/dsa/time-complexity.mdx @@ -5,6 +5,5 @@ description: Learn Time Complexity in JavaScript -Want to improve this page?. Raise a issue on [@github](https://github.com/ManishBisht777/frontend-freaks-website). - +Want to improve this page?. Raise a issue on [@github](https://github.com/FrontendFreaks/Official-Website). \ No newline at end of file