diff --git a/05-matrix_transpose/cpp/Makefile b/06-matrix_transpose/cpp/Makefile
similarity index 100%
rename from 05-matrix_transpose/cpp/Makefile
rename to 06-matrix_transpose/cpp/Makefile
diff --git a/05-matrix_transpose/cpp/matrix_tests.h b/06-matrix_transpose/cpp/matrix_tests.h
similarity index 100%
rename from 05-matrix_transpose/cpp/matrix_tests.h
rename to 06-matrix_transpose/cpp/matrix_tests.h
diff --git a/05-matrix_transpose/cpp/matrix_transpose.h b/06-matrix_transpose/cpp/matrix_transpose.h
similarity index 100%
rename from 05-matrix_transpose/cpp/matrix_transpose.h
rename to 06-matrix_transpose/cpp/matrix_transpose.h
diff --git a/05-matrix_transpose/cpp/matrix_transpose_test.cpp b/06-matrix_transpose/cpp/matrix_transpose_test.cpp
similarity index 100%
rename from 05-matrix_transpose/cpp/matrix_transpose_test.cpp
rename to 06-matrix_transpose/cpp/matrix_transpose_test.cpp
diff --git a/05-matrix_transpose/cpp/test_main.cpp b/06-matrix_transpose/cpp/test_main.cpp
similarity index 100%
rename from 05-matrix_transpose/cpp/test_main.cpp
rename to 06-matrix_transpose/cpp/test_main.cpp
diff --git a/05-matrix_transpose/python/matrix_tests.py b/06-matrix_transpose/python/matrix_tests.py
similarity index 100%
rename from 05-matrix_transpose/python/matrix_tests.py
rename to 06-matrix_transpose/python/matrix_tests.py
diff --git a/05-matrix_transpose/python/matrix_transpose.py b/06-matrix_transpose/python/matrix_transpose.py
similarity index 100%
rename from 05-matrix_transpose/python/matrix_transpose.py
rename to 06-matrix_transpose/python/matrix_transpose.py
diff --git a/05-matrix_transpose/python/matrix_transpose_test.py b/06-matrix_transpose/python/matrix_transpose_test.py
similarity index 100%
rename from 05-matrix_transpose/python/matrix_transpose_test.py
rename to 06-matrix_transpose/python/matrix_transpose_test.py
diff --git a/05-matrix_transpose/task.md b/06-matrix_transpose/task.md
similarity index 100%
rename from 05-matrix_transpose/task.md
rename to 06-matrix_transpose/task.md
diff --git a/06-matrix_experiment/cpp/Makefile b/07-matrix_experiment/cpp/Makefile
similarity index 100%
rename from 06-matrix_experiment/cpp/Makefile
rename to 07-matrix_experiment/cpp/Makefile
diff --git a/06-matrix_experiment/cpp/matrix_experiment_real.cpp b/07-matrix_experiment/cpp/matrix_experiment_real.cpp
similarity index 100%
rename from 06-matrix_experiment/cpp/matrix_experiment_real.cpp
rename to 07-matrix_experiment/cpp/matrix_experiment_real.cpp
diff --git a/06-matrix_experiment/cpp/matrix_experiment_sim.cpp b/07-matrix_experiment/cpp/matrix_experiment_sim.cpp
similarity index 100%
rename from 06-matrix_experiment/cpp/matrix_experiment_sim.cpp
rename to 07-matrix_experiment/cpp/matrix_experiment_sim.cpp
diff --git a/06-matrix_experiment/cpp/matrix_tests.h b/07-matrix_experiment/cpp/matrix_tests.h
similarity index 100%
rename from 06-matrix_experiment/cpp/matrix_tests.h
rename to 07-matrix_experiment/cpp/matrix_tests.h
diff --git a/06-matrix_experiment/python/Makefile b/07-matrix_experiment/python/Makefile
similarity index 100%
rename from 06-matrix_experiment/python/Makefile
rename to 07-matrix_experiment/python/Makefile
diff --git a/06-matrix_experiment/python/matrix_experiment_sim.py b/07-matrix_experiment/python/matrix_experiment_sim.py
similarity index 100%
rename from 06-matrix_experiment/python/matrix_experiment_sim.py
rename to 07-matrix_experiment/python/matrix_experiment_sim.py
diff --git a/06-matrix_experiment/python/matrix_tests.py b/07-matrix_experiment/python/matrix_tests.py
similarity index 100%
rename from 06-matrix_experiment/python/matrix_tests.py
rename to 07-matrix_experiment/python/matrix_tests.py
diff --git a/06-matrix_experiment/task.md b/07-matrix_experiment/task.md
similarity index 100%
rename from 06-matrix_experiment/task.md
rename to 07-matrix_experiment/task.md
diff --git a/07-cuckoo_hash/cpp/Makefile b/08-cuckoo_hash/cpp/Makefile
similarity index 100%
rename from 07-cuckoo_hash/cpp/Makefile
rename to 08-cuckoo_hash/cpp/Makefile
diff --git a/07-cuckoo_hash/cpp/cuckoo_hash.h b/08-cuckoo_hash/cpp/cuckoo_hash.h
similarity index 100%
rename from 07-cuckoo_hash/cpp/cuckoo_hash.h
rename to 08-cuckoo_hash/cpp/cuckoo_hash.h
diff --git a/07-cuckoo_hash/cpp/cuckoo_hash_test.cpp b/08-cuckoo_hash/cpp/cuckoo_hash_test.cpp
similarity index 100%
rename from 07-cuckoo_hash/cpp/cuckoo_hash_test.cpp
rename to 08-cuckoo_hash/cpp/cuckoo_hash_test.cpp
diff --git a/07-cuckoo_hash/cpp/random.h b/08-cuckoo_hash/cpp/random.h
similarity index 100%
rename from 07-cuckoo_hash/cpp/random.h
rename to 08-cuckoo_hash/cpp/random.h
diff --git a/07-cuckoo_hash/cpp/test_main.cpp b/08-cuckoo_hash/cpp/test_main.cpp
similarity index 100%
rename from 07-cuckoo_hash/cpp/test_main.cpp
rename to 08-cuckoo_hash/cpp/test_main.cpp
diff --git a/07-cuckoo_hash/python/cuckoo_hash.py b/08-cuckoo_hash/python/cuckoo_hash.py
similarity index 100%
rename from 07-cuckoo_hash/python/cuckoo_hash.py
rename to 08-cuckoo_hash/python/cuckoo_hash.py
diff --git a/07-cuckoo_hash/python/cuckoo_hash_test.py b/08-cuckoo_hash/python/cuckoo_hash_test.py
similarity index 100%
rename from 07-cuckoo_hash/python/cuckoo_hash_test.py
rename to 08-cuckoo_hash/python/cuckoo_hash_test.py
diff --git a/07-cuckoo_hash/task.md b/08-cuckoo_hash/task.md
similarity index 100%
rename from 07-cuckoo_hash/task.md
rename to 08-cuckoo_hash/task.md
diff --git a/08-hash_experiment/cpp/Makefile b/09-hash_experiment/cpp/Makefile
similarity index 100%
rename from 08-hash_experiment/cpp/Makefile
rename to 09-hash_experiment/cpp/Makefile
diff --git a/08-hash_experiment/cpp/hash_experiment.cpp b/09-hash_experiment/cpp/hash_experiment.cpp
similarity index 100%
rename from 08-hash_experiment/cpp/hash_experiment.cpp
rename to 09-hash_experiment/cpp/hash_experiment.cpp
diff --git a/08-hash_experiment/cpp/random.h b/09-hash_experiment/cpp/random.h
similarity index 100%
rename from 08-hash_experiment/cpp/random.h
rename to 09-hash_experiment/cpp/random.h
diff --git a/08-hash_experiment/python/Makefile b/09-hash_experiment/python/Makefile
similarity index 100%
rename from 08-hash_experiment/python/Makefile
rename to 09-hash_experiment/python/Makefile
diff --git a/08-hash_experiment/python/hash_experiment.py b/09-hash_experiment/python/hash_experiment.py
similarity index 100%
rename from 08-hash_experiment/python/hash_experiment.py
rename to 09-hash_experiment/python/hash_experiment.py
diff --git a/08-hash_experiment/task.md b/09-hash_experiment/task.md
similarity index 100%
rename from 08-hash_experiment/task.md
rename to 09-hash_experiment/task.md
diff --git a/09-find_duplicates/cpp/Makefile b/10-find_duplicates/cpp/Makefile
similarity index 100%
rename from 09-find_duplicates/cpp/Makefile
rename to 10-find_duplicates/cpp/Makefile
diff --git a/09-find_duplicates/cpp/find_duplicates.h b/10-find_duplicates/cpp/find_duplicates.h
similarity index 100%
rename from 09-find_duplicates/cpp/find_duplicates.h
rename to 10-find_duplicates/cpp/find_duplicates.h
diff --git a/09-find_duplicates/cpp/find_duplicates_test.cpp b/10-find_duplicates/cpp/find_duplicates_test.cpp
similarity index 100%
rename from 09-find_duplicates/cpp/find_duplicates_test.cpp
rename to 10-find_duplicates/cpp/find_duplicates_test.cpp
diff --git a/09-find_duplicates/cpp/test_main.cpp b/10-find_duplicates/cpp/test_main.cpp
similarity index 100%
rename from 09-find_duplicates/cpp/test_main.cpp
rename to 10-find_duplicates/cpp/test_main.cpp
diff --git a/09-find_duplicates/python/find_duplicates.py b/10-find_duplicates/python/find_duplicates.py
similarity index 100%
rename from 09-find_duplicates/python/find_duplicates.py
rename to 10-find_duplicates/python/find_duplicates.py
diff --git a/09-find_duplicates/python/find_duplicates_test.py b/10-find_duplicates/python/find_duplicates_test.py
similarity index 100%
rename from 09-find_duplicates/python/find_duplicates_test.py
rename to 10-find_duplicates/python/find_duplicates_test.py
diff --git a/09-find_duplicates/task.md b/10-find_duplicates/task.md
similarity index 100%
rename from 09-find_duplicates/task.md
rename to 10-find_duplicates/task.md
diff --git a/12-range_tree/cpp/Makefile b/11-range_tree/cpp/Makefile
similarity index 100%
rename from 12-range_tree/cpp/Makefile
rename to 11-range_tree/cpp/Makefile
diff --git a/12-range_tree/cpp/range_tree.h b/11-range_tree/cpp/range_tree.h
similarity index 100%
rename from 12-range_tree/cpp/range_tree.h
rename to 11-range_tree/cpp/range_tree.h
diff --git a/12-range_tree/cpp/range_tree_test.cpp b/11-range_tree/cpp/range_tree_test.cpp
similarity index 100%
rename from 12-range_tree/cpp/range_tree_test.cpp
rename to 11-range_tree/cpp/range_tree_test.cpp
diff --git a/12-range_tree/cpp/test_main.cpp b/11-range_tree/cpp/test_main.cpp
similarity index 100%
rename from 12-range_tree/cpp/test_main.cpp
rename to 11-range_tree/cpp/test_main.cpp
diff --git a/12-range_tree/python/range_tree.py b/11-range_tree/python/range_tree.py
similarity index 100%
rename from 12-range_tree/python/range_tree.py
rename to 11-range_tree/python/range_tree.py
diff --git a/12-range_tree/python/range_tree_test.py b/11-range_tree/python/range_tree_test.py
similarity index 100%
rename from 12-range_tree/python/range_tree_test.py
rename to 11-range_tree/python/range_tree_test.py
diff --git a/12-range_tree/task.md b/11-range_tree/task.md
similarity index 100%
rename from 12-range_tree/task.md
rename to 11-range_tree/task.md