Skip to content

Commit db1821b

Browse files
committedJul 11, 2015
Merge pull request #2 from afonsomatos/master
Fix wrong syllable count
2 parents cd24aaf + dae11fa commit db1821b

File tree

3 files changed

+186679
-186028
lines changed

3 files changed

+186679
-186028
lines changed
 

‎HaikuSource.txt

+186,677-186,026
Large diffs are not rendered by default.

‎MakeHaiku.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def getLine(syllablesRemaining):
1010
return s
1111

1212
fIn = open('HaikuSource.txt','r')
13-
lineNum = 186524
13+
lineNum = 187175
1414
words = [[],[],[],[],[],[],[]]
1515
#Initalize arrays
1616
while lineNum > 0:

‎testRecursion.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def getLineRecursive(syllablesRemaining, s):
1919
return getLineRecursive(syllablesRemaining - toGet, s)
2020

2121
fIn = open('HaikuSource.txt','r')
22-
lineNum = 186524
22+
lineNum = 187175
2323
words = [[],[],[],[],[],[],[]]
2424
#Initalize arrays
2525
while lineNum > 0:

0 commit comments

Comments
 (0)
Please sign in to comment.