diff --git a/2-0-data-structures-and-algorithms/2-2-7-hash-table/README.md b/2-0-data-structures-and-algorithms/2-2-9-hash-table/README.md similarity index 100% rename from 2-0-data-structures-and-algorithms/2-2-7-hash-table/README.md rename to 2-0-data-structures-and-algorithms/2-2-9-hash-table/README.md diff --git a/2-0-data-structures-and-algorithms/2-2-7-hash-table/pom.xml b/2-0-data-structures-and-algorithms/2-2-9-hash-table/pom.xml similarity index 91% rename from 2-0-data-structures-and-algorithms/2-2-7-hash-table/pom.xml rename to 2-0-data-structures-and-algorithms/2-2-9-hash-table/pom.xml index b9064ad48..0453cee6a 100644 --- a/2-0-data-structures-and-algorithms/2-2-7-hash-table/pom.xml +++ b/2-0-data-structures-and-algorithms/2-2-9-hash-table/pom.xml @@ -9,7 +9,7 @@ 4.0.0 - 2-2-7-hash-table + 2-2-9-hash-table \ No newline at end of file diff --git a/2-0-data-structures-and-algorithms/2-2-7-hash-table/src/main/java/com/bobocode/cs/HashTable.java b/2-0-data-structures-and-algorithms/2-2-9-hash-table/src/main/java/com/bobocode/cs/HashTable.java similarity index 100% rename from 2-0-data-structures-and-algorithms/2-2-7-hash-table/src/main/java/com/bobocode/cs/HashTable.java rename to 2-0-data-structures-and-algorithms/2-2-9-hash-table/src/main/java/com/bobocode/cs/HashTable.java diff --git a/2-0-data-structures-and-algorithms/2-2-7-hash-table/src/main/java/com/bobocode/cs/Map.java b/2-0-data-structures-and-algorithms/2-2-9-hash-table/src/main/java/com/bobocode/cs/Map.java similarity index 100% rename from 2-0-data-structures-and-algorithms/2-2-7-hash-table/src/main/java/com/bobocode/cs/Map.java rename to 2-0-data-structures-and-algorithms/2-2-9-hash-table/src/main/java/com/bobocode/cs/Map.java diff --git a/2-0-data-structures-and-algorithms/2-2-7-hash-table/src/test/java/com/bobocode/cs/HashTableTest.java b/2-0-data-structures-and-algorithms/2-2-9-hash-table/src/test/java/com/bobocode/cs/HashTableTest.java similarity index 100% rename from 2-0-data-structures-and-algorithms/2-2-7-hash-table/src/test/java/com/bobocode/cs/HashTableTest.java rename to 2-0-data-structures-and-algorithms/2-2-9-hash-table/src/test/java/com/bobocode/cs/HashTableTest.java diff --git a/2-0-data-structures-and-algorithms/pom.xml b/2-0-data-structures-and-algorithms/pom.xml index 7d9923712..a08d31d22 100644 --- a/2-0-data-structures-and-algorithms/pom.xml +++ b/2-0-data-structures-and-algorithms/pom.xml @@ -11,7 +11,7 @@ 2-2-4-linked-list 2-2-5-array-list 2-2-6-binary-search-tree - 2-2-7-hash-table + 2-2-9-hash-table data-structures-and-algorithms-util