From 7dcd3f9fc59a3fc70366d1be76a0d59d31b81f73 Mon Sep 17 00:00:00 2001 From: Ming Tsai Date: Sat, 17 Apr 2021 21:47:53 -0400 Subject: [PATCH] chore: migration of haskell --- algorithms/Haskell/README.md | 6 ++++++ .../haskell => algorithms/Haskell/strings}/palindrome.hs | 0 {strings/haskell => algorithms/Haskell/strings}/sequence.hs | 0 strings/README.md | 4 ---- 4 files changed, 6 insertions(+), 4 deletions(-) create mode 100644 algorithms/Haskell/README.md rename {strings/haskell => algorithms/Haskell/strings}/palindrome.hs (100%) rename {strings/haskell => algorithms/Haskell/strings}/sequence.hs (100%) diff --git a/algorithms/Haskell/README.md b/algorithms/Haskell/README.md new file mode 100644 index 00000000..e92056e6 --- /dev/null +++ b/algorithms/Haskell/README.md @@ -0,0 +1,6 @@ +# Haskell + +## Strings + +1. [Palindrome Check](strings/palindrome.hs) +2. [All subsequences](strings/sequence.hs) \ No newline at end of file diff --git a/strings/haskell/palindrome.hs b/algorithms/Haskell/strings/palindrome.hs similarity index 100% rename from strings/haskell/palindrome.hs rename to algorithms/Haskell/strings/palindrome.hs diff --git a/strings/haskell/sequence.hs b/algorithms/Haskell/strings/sequence.hs similarity index 100% rename from strings/haskell/sequence.hs rename to algorithms/Haskell/strings/sequence.hs diff --git a/strings/README.md b/strings/README.md index f4eee73e..ca8fac67 100644 --- a/strings/README.md +++ b/strings/README.md @@ -15,8 +15,4 @@ 1. [Palindrome Check](rust/palindrome/README.md) -### Haskell - -1. [Palindrome Check](haskell/palindrome.hs) -2. [All subsequences](haskell/sequence.hs)