diff --git a/config/sidebar.ts b/config/sidebar.ts index f58d6be..3bcd57a 100644 --- a/config/sidebar.ts +++ b/config/sidebar.ts @@ -78,6 +78,67 @@ 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: "Basic Sorting", + href: "/batch/dsa/basic-sorting", + }, + { + title: "Advance Sorting", + href: "/batch/dsa/advance-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/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 diff --git a/content/batch/dsa/array.mdx b/content/batch/dsa/array.mdx new file mode 100644 index 0000000..7db3516 --- /dev/null +++ b/content/batch/dsa/array.mdx @@ -0,0 +1,9 @@ +--- +title: Arrays +description: Learn Arrays in JavaScript +--- + + + +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/basic-sorting.mdx b/content/batch/dsa/basic-sorting.mdx new file mode 100644 index 0000000..982386c --- /dev/null +++ b/content/batch/dsa/basic-sorting.mdx @@ -0,0 +1,9 @@ +--- +title: Basic Sorting +description: Learn 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 diff --git a/content/batch/dsa/linked-list.mdx b/content/batch/dsa/linked-list.mdx new file mode 100644 index 0000000..e0f4689 --- /dev/null +++ b/content/batch/dsa/linked-list.mdx @@ -0,0 +1,9 @@ +--- +title: Linked List +description: Learn Linked List in JavaScript +--- + + + +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 new file mode 100644 index 0000000..e8fdfa4 --- /dev/null +++ b/content/batch/dsa/loops.mdx @@ -0,0 +1,9 @@ +--- +title: Loops +description: Learn Loops in JavaScript +--- + + + +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 new file mode 100644 index 0000000..4436b35 --- /dev/null +++ b/content/batch/dsa/objects.mdx @@ -0,0 +1,9 @@ +--- +title: Objects +description: Learn Objects in JavaScript +--- + + + +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 new file mode 100644 index 0000000..e47906c --- /dev/null +++ b/content/batch/dsa/polyfills.mdx @@ -0,0 +1,9 @@ +--- +title: Polyfills +description: Learn Polyfills in JavaScript +--- + + + +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 new file mode 100644 index 0000000..afb7bee --- /dev/null +++ b/content/batch/dsa/queue.mdx @@ -0,0 +1,9 @@ +--- +title: Queue +description: Learn Queue in JavaScript +--- + + + +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 new file mode 100644 index 0000000..1f6a3e6 --- /dev/null +++ b/content/batch/dsa/recursion.mdx @@ -0,0 +1,9 @@ +--- +title: Recursion +description: Learn Recursion in JavaScript +--- + + + +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 new file mode 100644 index 0000000..e3d2199 --- /dev/null +++ b/content/batch/dsa/search.mdx @@ -0,0 +1,9 @@ +--- +title: Search +description: Lear Search in JavaScript +--- + + + +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 new file mode 100644 index 0000000..3acd83d --- /dev/null +++ b/content/batch/dsa/set-map.mdx @@ -0,0 +1,9 @@ +--- +title: Set & Map +description: Learn Set and Map in JavaScript +--- + + + +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 new file mode 100644 index 0000000..c57a544 --- /dev/null +++ b/content/batch/dsa/stack.mdx @@ -0,0 +1,9 @@ +--- +title: Stack +description: Learn Stack in JavaScript +--- + + + +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 new file mode 100644 index 0000000..92fac0d --- /dev/null +++ b/content/batch/dsa/string.mdx @@ -0,0 +1,9 @@ +--- +title: String +description: Learn String in JavaScript +--- + + + +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 new file mode 100644 index 0000000..36455fe --- /dev/null +++ b/content/batch/dsa/time-complexity.mdx @@ -0,0 +1,9 @@ +--- +title: Time Complexity +description: Learn Time Complexity in JavaScript +--- + + + +Want to improve this page?. Raise a issue on [@github](https://github.com/FrontendFreaks/Official-Website). + \ No newline at end of file