From c106fdca01c702b56bf7fda79a531fa43d3a5604 Mon Sep 17 00:00:00 2001 From: timmoth Date: Sun, 16 Jun 2024 14:36:46 +0100 Subject: [PATCH] moved docs --- .github/workflows/docs.yml | 2 +- .../Arithmetic/greatest_common_divisor.md | 0 .../Arithmetic/least_common_multiple.md | 0 .../docs => docs}/DataStructures/binary_tree.md | 0 .../DataStructures/unweighted_graph.md | 0 .../docs => docs}/DataStructures/weighted_graph.md | 0 {DsaDotnet/docs => docs}/Search/binary_search.md | 0 .../docs => docs}/Search/breadth_first_search.md | 0 .../docs => docs}/Search/depth_first_search.md | 0 {DsaDotnet/docs => docs}/Search/djikstras.md | 0 {DsaDotnet/docs => docs}/Search/linear_search.md | 0 .../docs => docs}/SequenceAndSeries/factorial.md | 0 .../docs => docs}/SequenceAndSeries/fibonacci.md | 0 .../docs => docs}/SequenceAndSeries/primes.md | 0 {DsaDotnet/docs => docs}/Sorting/bubble_sort.md | 0 {DsaDotnet/docs => docs}/Sorting/insertion_sort.md | 0 {DsaDotnet/docs => docs}/Sorting/merge_sort.md | 0 {DsaDotnet/docs => docs}/Sorting/quick_sort.md | 0 {DsaDotnet/docs => docs}/assets/logo.png | Bin {DsaDotnet/docs => docs}/benchmarks.md | 0 {DsaDotnet/docs => docs}/contributing.md | 0 {DsaDotnet/docs => docs}/index.md | 0 {DsaDotnet/docs => docs}/releases.md | 0 {DsaDotnet/docs => docs}/tests.md | 0 DsaDotnet/mkdocs.yml => mkdocs.yml | 0 25 files changed, 1 insertion(+), 1 deletion(-) rename {DsaDotnet/docs => docs}/Arithmetic/greatest_common_divisor.md (100%) rename {DsaDotnet/docs => docs}/Arithmetic/least_common_multiple.md (100%) rename {DsaDotnet/docs => docs}/DataStructures/binary_tree.md (100%) rename {DsaDotnet/docs => docs}/DataStructures/unweighted_graph.md (100%) rename {DsaDotnet/docs => docs}/DataStructures/weighted_graph.md (100%) rename {DsaDotnet/docs => docs}/Search/binary_search.md (100%) rename {DsaDotnet/docs => docs}/Search/breadth_first_search.md (100%) rename {DsaDotnet/docs => docs}/Search/depth_first_search.md (100%) rename {DsaDotnet/docs => docs}/Search/djikstras.md (100%) rename {DsaDotnet/docs => docs}/Search/linear_search.md (100%) rename {DsaDotnet/docs => docs}/SequenceAndSeries/factorial.md (100%) rename {DsaDotnet/docs => docs}/SequenceAndSeries/fibonacci.md (100%) rename {DsaDotnet/docs => docs}/SequenceAndSeries/primes.md (100%) rename {DsaDotnet/docs => docs}/Sorting/bubble_sort.md (100%) rename {DsaDotnet/docs => docs}/Sorting/insertion_sort.md (100%) rename {DsaDotnet/docs => docs}/Sorting/merge_sort.md (100%) rename {DsaDotnet/docs => docs}/Sorting/quick_sort.md (100%) rename {DsaDotnet/docs => docs}/assets/logo.png (100%) rename {DsaDotnet/docs => docs}/benchmarks.md (100%) rename {DsaDotnet/docs => docs}/contributing.md (100%) rename {DsaDotnet/docs => docs}/index.md (100%) rename {DsaDotnet/docs => docs}/releases.md (100%) rename {DsaDotnet/docs => docs}/tests.md (100%) rename DsaDotnet/mkdocs.yml => mkdocs.yml (100%) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 4529cb0..7721114 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -1,4 +1,4 @@ -name: ci +name: docs on: push: branches: diff --git a/DsaDotnet/docs/Arithmetic/greatest_common_divisor.md b/docs/Arithmetic/greatest_common_divisor.md similarity index 100% rename from DsaDotnet/docs/Arithmetic/greatest_common_divisor.md rename to docs/Arithmetic/greatest_common_divisor.md diff --git a/DsaDotnet/docs/Arithmetic/least_common_multiple.md b/docs/Arithmetic/least_common_multiple.md similarity index 100% rename from DsaDotnet/docs/Arithmetic/least_common_multiple.md rename to docs/Arithmetic/least_common_multiple.md diff --git a/DsaDotnet/docs/DataStructures/binary_tree.md b/docs/DataStructures/binary_tree.md similarity index 100% rename from DsaDotnet/docs/DataStructures/binary_tree.md rename to docs/DataStructures/binary_tree.md diff --git a/DsaDotnet/docs/DataStructures/unweighted_graph.md b/docs/DataStructures/unweighted_graph.md similarity index 100% rename from DsaDotnet/docs/DataStructures/unweighted_graph.md rename to docs/DataStructures/unweighted_graph.md diff --git a/DsaDotnet/docs/DataStructures/weighted_graph.md b/docs/DataStructures/weighted_graph.md similarity index 100% rename from DsaDotnet/docs/DataStructures/weighted_graph.md rename to docs/DataStructures/weighted_graph.md diff --git a/DsaDotnet/docs/Search/binary_search.md b/docs/Search/binary_search.md similarity index 100% rename from DsaDotnet/docs/Search/binary_search.md rename to docs/Search/binary_search.md diff --git a/DsaDotnet/docs/Search/breadth_first_search.md b/docs/Search/breadth_first_search.md similarity index 100% rename from DsaDotnet/docs/Search/breadth_first_search.md rename to docs/Search/breadth_first_search.md diff --git a/DsaDotnet/docs/Search/depth_first_search.md b/docs/Search/depth_first_search.md similarity index 100% rename from DsaDotnet/docs/Search/depth_first_search.md rename to docs/Search/depth_first_search.md diff --git a/DsaDotnet/docs/Search/djikstras.md b/docs/Search/djikstras.md similarity index 100% rename from DsaDotnet/docs/Search/djikstras.md rename to docs/Search/djikstras.md diff --git a/DsaDotnet/docs/Search/linear_search.md b/docs/Search/linear_search.md similarity index 100% rename from DsaDotnet/docs/Search/linear_search.md rename to docs/Search/linear_search.md diff --git a/DsaDotnet/docs/SequenceAndSeries/factorial.md b/docs/SequenceAndSeries/factorial.md similarity index 100% rename from DsaDotnet/docs/SequenceAndSeries/factorial.md rename to docs/SequenceAndSeries/factorial.md diff --git a/DsaDotnet/docs/SequenceAndSeries/fibonacci.md b/docs/SequenceAndSeries/fibonacci.md similarity index 100% rename from DsaDotnet/docs/SequenceAndSeries/fibonacci.md rename to docs/SequenceAndSeries/fibonacci.md diff --git a/DsaDotnet/docs/SequenceAndSeries/primes.md b/docs/SequenceAndSeries/primes.md similarity index 100% rename from DsaDotnet/docs/SequenceAndSeries/primes.md rename to docs/SequenceAndSeries/primes.md diff --git a/DsaDotnet/docs/Sorting/bubble_sort.md b/docs/Sorting/bubble_sort.md similarity index 100% rename from DsaDotnet/docs/Sorting/bubble_sort.md rename to docs/Sorting/bubble_sort.md diff --git a/DsaDotnet/docs/Sorting/insertion_sort.md b/docs/Sorting/insertion_sort.md similarity index 100% rename from DsaDotnet/docs/Sorting/insertion_sort.md rename to docs/Sorting/insertion_sort.md diff --git a/DsaDotnet/docs/Sorting/merge_sort.md b/docs/Sorting/merge_sort.md similarity index 100% rename from DsaDotnet/docs/Sorting/merge_sort.md rename to docs/Sorting/merge_sort.md diff --git a/DsaDotnet/docs/Sorting/quick_sort.md b/docs/Sorting/quick_sort.md similarity index 100% rename from DsaDotnet/docs/Sorting/quick_sort.md rename to docs/Sorting/quick_sort.md diff --git a/DsaDotnet/docs/assets/logo.png b/docs/assets/logo.png similarity index 100% rename from DsaDotnet/docs/assets/logo.png rename to docs/assets/logo.png diff --git a/DsaDotnet/docs/benchmarks.md b/docs/benchmarks.md similarity index 100% rename from DsaDotnet/docs/benchmarks.md rename to docs/benchmarks.md diff --git a/DsaDotnet/docs/contributing.md b/docs/contributing.md similarity index 100% rename from DsaDotnet/docs/contributing.md rename to docs/contributing.md diff --git a/DsaDotnet/docs/index.md b/docs/index.md similarity index 100% rename from DsaDotnet/docs/index.md rename to docs/index.md diff --git a/DsaDotnet/docs/releases.md b/docs/releases.md similarity index 100% rename from DsaDotnet/docs/releases.md rename to docs/releases.md diff --git a/DsaDotnet/docs/tests.md b/docs/tests.md similarity index 100% rename from DsaDotnet/docs/tests.md rename to docs/tests.md diff --git a/DsaDotnet/mkdocs.yml b/mkdocs.yml similarity index 100% rename from DsaDotnet/mkdocs.yml rename to mkdocs.yml