[READ-ONLY] Mirror of https://github.com/mrgnw/python-scripts.
0

Configure Feed

Select the types of activity you want to include in your feed.

Adding dictionaryMaker.py description

+5 -1
+5 -1
README.md
··· 4 4 Lossless compression of bit strings using Huffman coding. 5 5 Huffman encoding assigns a binary value to each character, with the shortest binary value representing the most commonly used character. 6 6 7 + ### [dictionaryMaker](dictionaryMaker.py) 8 + Reads a file or directory, parses words, adds them to a dictionary, and saves it as a file that can be read by the [flashcards](flashcards.py) script. 9 + 10 + 7 11 ### [flashcards](flashcards.py) 8 - * Quizzes the user based on a dictionary of terms. The user can add terms manually, from a single file, from all files in a folder with a certain extension, or from all files in a folder. 12 + * Quizzes the user based on a dictionary of terms. The user can add terms manually or from a single file. Can use files produced by dictionaryMaker. 9 13 10 14 ### [fibonacci_evens](fibonacci_evens.py) 11 15 Calculates the sum of all even numbers that are in the fibonacci sequence under a certain number.