diff --git a/README.md b/README.md index 71b6a44..0d16c5b 100644 --- a/README.md +++ b/README.md @@ -127,7 +127,6 @@ Challenges, solutions, and unit tests are presented in the form of **IPython/Jup | Compress a string | [Challenge](http://nbviewer.ipython.org/github/donnemartin/interactive-coding-challenges/blob/master/arrays_strings/compress/compress_challenge.ipynb)│[Solution](http://nbviewer.ipython.org/github/donnemartin/interactive-coding-challenges/blob/master/arrays_strings/compress/compress_solution.ipynb) | | Reverse characters in a string | [Challenge](http://nbviewer.ipython.org/github/donnemartin/interactive-coding-challenges/blob/master/arrays_strings/reverse_string/reverse_string_challenge.ipynb)│[Solution](http://nbviewer.ipython.org/github/donnemartin/interactive-coding-challenges/blob/master/arrays_strings/reverse_string/reverse_string_solution.ipynb) | | Implement a hash table | [Challenge](http://nbviewer.ipython.org/github/donnemartin/interactive-coding-challenges/blob/master/arrays_strings/hash_map/hash_map_challenge.ipynb)│[Solution](http://nbviewer.ipython.org/github/donnemartin/interactive-coding-challenges/blob/master/arrays_strings/hash_map/hash_map_solution.ipynb) | -| Group list items | [Challenge](http://nbviewer.ipython.org/github/donnemartin/interactive-coding-challenges/blob/master/arrays_strings/group_ordered/group_ordered_challenge.ipynb)│[Solution](http://nbviewer.ipython.org/github/donnemartin/interactive-coding-challenges/blob/master/arrays_strings/group_ordered/group_ordered_solution.ipynb) | | Find the first non-repeated character in a string | [Contribute](https://github.com/donnemartin/interactive-coding-challenges/blob/master/CONTRIBUTING.md)│[Contribute](https://github.com/donnemartin/interactive-coding-challenges/blob/master/CONTRIBUTING.md) | | Remove specified characters in a string | [Contribute](https://github.com/donnemartin/interactive-coding-challenges/blob/master/CONTRIBUTING.md)│[Contribute](https://github.com/donnemartin/interactive-coding-challenges/blob/master/CONTRIBUTING.md) | | Reverse words in a string | [Contribute](https://github.com/donnemartin/interactive-coding-challenges/blob/master/CONTRIBUTING.md)│[Contribute](https://github.com/donnemartin/interactive-coding-challenges/blob/master/CONTRIBUTING.md) | diff --git a/sorting_searching/group_ordered/__init__.py b/staging/sorting_searching/group_ordered/__init__.py similarity index 100% rename from sorting_searching/group_ordered/__init__.py rename to staging/sorting_searching/group_ordered/__init__.py diff --git a/sorting_searching/group_ordered/group_ordered_challenge.ipynb b/staging/sorting_searching/group_ordered/group_ordered_challenge.ipynb similarity index 100% rename from sorting_searching/group_ordered/group_ordered_challenge.ipynb rename to staging/sorting_searching/group_ordered/group_ordered_challenge.ipynb diff --git a/sorting_searching/group_ordered/group_ordered_solution.ipynb b/staging/sorting_searching/group_ordered/group_ordered_solution.ipynb similarity index 100% rename from sorting_searching/group_ordered/group_ordered_solution.ipynb rename to staging/sorting_searching/group_ordered/group_ordered_solution.ipynb diff --git a/sorting_searching/group_ordered/test_group_ordered.py b/staging/sorting_searching/group_ordered/test_group_ordered.py similarity index 100% rename from sorting_searching/group_ordered/test_group_ordered.py rename to staging/sorting_searching/group_ordered/test_group_ordered.py