You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-1
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,8 @@ The files include python implementation of some algorithms and data structures:
4
4
-*eratosthenes_sieve.py* contains prime number generator which uses [Sieve of Eratosthenes](https://en.wikipedia.org/wiki/Sieve_of_Eratosthenes);
5
5
-*list_based_dict.py* implements a dictionary that stores a list of key-value pairs and mimics the interface of the built-in `dict` type,
6
6
-*diff.py* is a file comparison program based on a generalized algorithm finding the [longest common subsequence](https://en.wikipedia.org/wiki/Longest_common_subsequence),
7
-
-*hanoi_tower.py* solves [Tower of Hanoi](https://en.wikipedia.org/wiki/Tower_of_Hanoi) (using a recursive algorithm) and visualizes the solution (using [pyglet](https://pyglet.org/)).
7
+
-*hanoi_tower.py* solves [Tower of Hanoi](https://en.wikipedia.org/wiki/Tower_of_Hanoi) (using a recursive algorithm) and visualizes the solution (using [pyglet](https://pyglet.org/)),
8
+
-*word2word.py* solves [Doublets (A Word Puzzle By Lewis Carroll)](https://lewiscarrollresources.net/doublets/index.html) using [BFS](https://en.wikipedia.org/wiki/Breadth-first_search).
8
9
9
10
# Bibliography/references
10
11
[1] Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest and Clifford Stein *Introduction to Algorithms*
0 commit comments