From 410e5d91349af7355508fd0195da7ded47782f46 Mon Sep 17 00:00:00 2001 From: algobytewise Date: Sun, 21 Mar 2021 16:08:38 +0530 Subject: [PATCH 1/4] Move files to strings-folder --- {other => strings}/anagrams.py | 0 {other => strings}/autocomplete_using_trie.py | 0 {other => strings}/detecting_english_programmatically.py | 0 {other => strings}/dictionary.txt | 0 {other => strings}/frequency_finder.py | 0 {other => strings}/palindrome.py | 0 {other => strings}/word_patterns.py | 0 {other => strings}/words | 0 8 files changed, 0 insertions(+), 0 deletions(-) rename {other => strings}/anagrams.py (100%) rename {other => strings}/autocomplete_using_trie.py (100%) rename {other => strings}/detecting_english_programmatically.py (100%) rename {other => strings}/dictionary.txt (100%) rename {other => strings}/frequency_finder.py (100%) rename {other => strings}/palindrome.py (100%) rename {other => strings}/word_patterns.py (100%) rename {other => strings}/words (100%) diff --git a/other/anagrams.py b/strings/anagrams.py similarity index 100% rename from other/anagrams.py rename to strings/anagrams.py diff --git a/other/autocomplete_using_trie.py b/strings/autocomplete_using_trie.py similarity index 100% rename from other/autocomplete_using_trie.py rename to strings/autocomplete_using_trie.py diff --git a/other/detecting_english_programmatically.py b/strings/detecting_english_programmatically.py similarity index 100% rename from other/detecting_english_programmatically.py rename to strings/detecting_english_programmatically.py diff --git a/other/dictionary.txt b/strings/dictionary.txt similarity index 100% rename from other/dictionary.txt rename to strings/dictionary.txt diff --git a/other/frequency_finder.py b/strings/frequency_finder.py similarity index 100% rename from other/frequency_finder.py rename to strings/frequency_finder.py diff --git a/other/palindrome.py b/strings/palindrome.py similarity index 100% rename from other/palindrome.py rename to strings/palindrome.py diff --git a/other/word_patterns.py b/strings/word_patterns.py similarity index 100% rename from other/word_patterns.py rename to strings/word_patterns.py diff --git a/other/words b/strings/words similarity index 100% rename from other/words rename to strings/words From 80e85564a0ac65a5b661d79929a714758512a119 Mon Sep 17 00:00:00 2001 From: algobytewise Date: Sun, 21 Mar 2021 16:15:55 +0530 Subject: [PATCH 2/4] moved the file "words" back to the original folder --- {strings => other}/words | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {strings => other}/words (100%) diff --git a/strings/words b/other/words similarity index 100% rename from strings/words rename to other/words From a53b7711837cc7c8b4f6a6f4b1f551ebb0446bdb Mon Sep 17 00:00:00 2001 From: algobytewise Date: Sun, 21 Mar 2021 16:17:59 +0530 Subject: [PATCH 3/4] moved "anagram.py" also back --- {strings => other}/anagrams.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {strings => other}/anagrams.py (100%) diff --git a/strings/anagrams.py b/other/anagrams.py similarity index 100% rename from strings/anagrams.py rename to other/anagrams.py From 7f161d98db84085ea4fe59fc5d3799acf72e6085 Mon Sep 17 00:00:00 2001 From: algobytewise Date: Sun, 21 Mar 2021 16:30:11 +0530 Subject: [PATCH 4/4] fix the codespell ignore-list --- .pre-commit-config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index d6be7f60f714..ee422e61a03b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -43,11 +43,11 @@ repos: - id: codespell args: - --ignore-words-list=ans,crate,fo,followings,hist,iff,mater,secant,som,tim - - --skip="./.*,./other/dictionary.txt,./other/words,./project_euler/problem_022/p022_names.txt" + - --skip="./.*,./strings/dictionary.txt,./other/words,./project_euler/problem_022/p022_names.txt" - --quiet-level=2 exclude: | (?x)^( - other/dictionary.txt | + strings/dictionary.txt | other/words | project_euler/problem_022/p022_names.txt )$