diff --git a/algorithms/Rust/README.md b/algorithms/Rust/README.md new file mode 100644 index 00000000..2f71bf2d --- /dev/null +++ b/algorithms/Rust/README.md @@ -0,0 +1,4 @@ + +# Rust + +1. [Palindrome Check](strings/palindrome/README.md) \ No newline at end of file diff --git a/strings/rust/palindrome/.gitignore b/algorithms/Rust/strings/palindrome/.gitignore similarity index 100% rename from strings/rust/palindrome/.gitignore rename to algorithms/Rust/strings/palindrome/.gitignore diff --git a/strings/rust/palindrome/Cargo.lock b/algorithms/Rust/strings/palindrome/Cargo.lock similarity index 100% rename from strings/rust/palindrome/Cargo.lock rename to algorithms/Rust/strings/palindrome/Cargo.lock diff --git a/strings/rust/palindrome/Cargo.toml b/algorithms/Rust/strings/palindrome/Cargo.toml similarity index 100% rename from strings/rust/palindrome/Cargo.toml rename to algorithms/Rust/strings/palindrome/Cargo.toml diff --git a/strings/rust/palindrome/README.md b/algorithms/Rust/strings/palindrome/README.md similarity index 100% rename from strings/rust/palindrome/README.md rename to algorithms/Rust/strings/palindrome/README.md diff --git a/strings/rust/palindrome/src/main.rs b/algorithms/Rust/strings/palindrome/src/main.rs similarity index 100% rename from strings/rust/palindrome/src/main.rs rename to algorithms/Rust/strings/palindrome/src/main.rs diff --git a/strings/README.md b/strings/README.md index ca8fac67..776f9228 100644 --- a/strings/README.md +++ b/strings/README.md @@ -10,9 +10,3 @@ 6. [String Reversal](c-or-cpp/string-reverse.cpp) 7. [Permutation of String](c-or-cpp/Permutation-of-String.c) 8. [Count Words](c-or-cpp/count-words.c) - -### Rust - -1. [Palindrome Check](rust/palindrome/README.md) - -