A list containing wordlists, for example:
[["a"], ["one", "two", "more"], ["eo", "ai"]]
is regularish when all the words in each sublist have the length of this sublist.
Design a function @es_regulin(llpals)@ which, given a list of wordlists @llpals@, returns True when @llpals@ is regularish.
>>> lp = [["a"], ["uno", "dos", "mas"], ["eo", "ai"]] >>> es_regulin(lp) True >>> lpals=[[]] >>> es_regulin(lpals) True >>> L=[["a"], ["uno", "dos", "tres"], ["eo", "ai"]] >>> es_regulin(L) False