Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion codebreaker_unit_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# @c:\Python32\python.exe c:\Python32\Lib\site-packages\pylint\lint.py --rcfile=pylint.conf %1 %2 %3 %4 %5 %6 %7 %8 %9
#
# This way I could run "run_pylint.bat foo.py" to run pylint on a source code file.
# Be sure to download the pylint.conf config file and have it in the same folderas codebreaker_unit_tests.py
# Be sure to download the pylint.conf config file and have it in the same folder as codebreaker_unit_tests.py


FOX_MESSAGE = "The quick brown fox jumped over the yellow lazy dog.".upper()
Expand Down
2 changes: 1 addition & 1 deletion freqFinder.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def getLetterCount(message):
# count of how many times they appear in the message parameter.
letterToCount = {}
for letter in LETTERS:
letterToCount[letter] = 0 # intialize each letter to 0
letterToCount[letter] = 0 # initialize each letter to 0

for letter in message:
if letter in LETTERS:
Expand Down