diff --git a/DSA/Algorithms/DynamicProgramming/DynamicProgramming.txt b/DSA/Algorithms/DynamicProgramming/DynamicProgramming.txt new file mode 100644 index 0000000..e69de29 diff --git a/DSA/Algorithms/README.md b/DSA/Algorithms/README.md new file mode 100644 index 0000000..0d515ae --- /dev/null +++ b/DSA/Algorithms/README.md @@ -0,0 +1,5 @@ +# Table of Contents + +- [Dynamic Programming](DynamicProgramming/) +- [Searching](Searching/) +- [Sorting](Sorting/) diff --git a/DSA/Algorithms/Searching/Searching.txt b/DSA/Algorithms/Searching/Searching.txt new file mode 100644 index 0000000..e69de29 diff --git a/DSA/Algorithms/Sorting/Sorting.txt b/DSA/Algorithms/Sorting/Sorting.txt new file mode 100644 index 0000000..e69de29 diff --git a/DSA/DataStructures/Array/Array.txt b/DSA/DataStructures/Array/Array.txt new file mode 100644 index 0000000..e69de29 diff --git a/DSA/DataStructures/Graph/Graph.txt b/DSA/DataStructures/Graph/Graph.txt new file mode 100644 index 0000000..e69de29 diff --git a/DSA/DataStructures/LinkedList/LinkedList.txt b/DSA/DataStructures/LinkedList/LinkedList.txt new file mode 100644 index 0000000..e69de29 diff --git a/DSA/DataStructures/Queue/Queue.txt b/DSA/DataStructures/Queue/Queue.txt new file mode 100644 index 0000000..e69de29 diff --git a/DSA/DataStructures/README.md b/DSA/DataStructures/README.md new file mode 100644 index 0000000..19fab7f --- /dev/null +++ b/DSA/DataStructures/README.md @@ -0,0 +1,9 @@ +# Table of Contents + +[Array](Array/) +[Graph](Graph/) +[HashMap](HashMap/) +[LinkedList](LinkedList/) +[Queue](Queue/) +[Stack](Stack/) +[Tree](Tree/) diff --git a/DSA/DataStructures/Stack/Stack.txt b/DSA/DataStructures/Stack/Stack.txt new file mode 100644 index 0000000..e69de29 diff --git a/DSA/DataStructures/Tree/Tree.txt b/DSA/DataStructures/Tree/Tree.txt new file mode 100644 index 0000000..e69de29 diff --git a/DSA/README.md b/DSA/README.md new file mode 100644 index 0000000..4f7c542 --- /dev/null +++ b/DSA/README.md @@ -0,0 +1,4 @@ +# Table of Contents + +- [Data Structures](DataStructures) +- [Algorithms](Algorithms) diff --git a/GeneralPurpose/HigherOrderFunctions/HigherOrderFunctions.txt b/GeneralPurpose/HigherOrderFunctions/HigherOrderFunctions.txt new file mode 100644 index 0000000..e69de29 diff --git a/GeneralPurpose/LanguageFundamentals/LanguageFundamentals.txt b/GeneralPurpose/LanguageFundamentals/LanguageFundamentals.txt new file mode 100644 index 0000000..e69de29 diff --git a/GeneralPurpose/Math/Math.txt b/GeneralPurpose/Math/Math.txt new file mode 100644 index 0000000..e69de29 diff --git a/GeneralPurpose/README.md b/GeneralPurpose/README.md new file mode 100644 index 0000000..c82388b --- /dev/null +++ b/GeneralPurpose/README.md @@ -0,0 +1,6 @@ +# Table of Contents + +- [HigherOrderFunctions](HigherOrderFunctions/) +- [LanguageFundamentals](LanguageFundamentals/) +- [Math](Math/) +- [Recursion](Recursion/) diff --git a/GeneralPurpose/Recursion/Recursion.txt b/GeneralPurpose/Recursion/Recursion.txt new file mode 100644 index 0000000..e69de29 diff --git a/README.md b/README.md index cb6b3a3..84f329e 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,8 @@ # InterviewCodingChallenges + Coding Challenges suitable for use as interview questions. + +## Table of Contents + +- [DSA](DSA/) +- [GeneralPurpose](GeneralPurpose/)