Closed VivekThazhathattil closed 1 year ago
Fix for math domain error in acrostic verbose mode. The error occurs in cases where none of the characters in the acrostic are in the word dict, and hence length becomes 0 and fails at bits = math.log(length, 2).
length
bits = math.log(length, 2)
Fix for math domain error in acrostic verbose mode. The error occurs in cases where none of the characters in the acrostic are in the word dict, and hence
length
becomes 0 and fails atbits = math.log(length, 2)
.