From a7a0b0a77c1aca4bd46bef45b8e2bac0b3db35a8 Mon Sep 17 00:00:00 2001 From: Donne Martin Date: Mon, 29 Jun 2015 20:28:00 -0400 Subject: [PATCH] Renamed rotation.ipynb to rotation_solution.ipynb to prepare for challenge and solution notebooks. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b39da30..4625edd 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Continually updated Python Notebooks containing TDD-based coding challenges and | [permutation](http://nbviewer.ipython.org/github/donnemartin/coding-challenges/blob/master/arrays_strings/permutation/permutation.ipynb) | Determine if a string is a permutation of another | | [replace_char](http://nbviewer.ipython.org/github/donnemartin/coding-challenges/blob/master/arrays_strings/replace_char/replace_char.ipynb) | Encode spaces in a string in-place | | [compress](http://nbviewer.ipython.org/github/donnemartin/coding-challenges/blob/master/arrays_strings/compress/compress.ipynb) | Compress a string | -| [rotation](http://nbviewer.ipython.org/github/donnemartin/coding-challenges/blob/master/arrays_strings/rotation/rotation.ipynb) | Determine if a string is a rotation of another | +| [rotation](http://nbviewer.ipython.org/github/donnemartin/coding-challenges/blob/master/arrays_strings/rotation/rotation_solution.ipynb) | Determine if a string is a rotation of another | | [hash-map](http://nbviewer.ipython.org/github/donnemartin/coding-challenges/blob/master/arrays_strings/hash_map/hash_map.ipynb) | Implement a hash table with set, get, and remove methods | ## Linked Lists