jonnycomes / look_and_say

A python module for exploring look and say sequences in the spirit of John H Conway.
https://jonnycomes.github.io/look_and_say/
MIT License
1 stars 0 forks source link

LookAndSay objects should include GenLookAndSay objects #2

Closed jonnycomes closed 2 years ago

jonnycomes commented 2 years ago

Change LookAndSay objects to allow for more general say-functions which allow for the decay of a^b to depend on both a and b.

jonnycomes commented 2 years ago

Fixed. The logic of GenLookAndSay has been incorporated into LookAndSay to allow for a say function with two parameters (although one parameter say functions are still supported).