Skip to content

Instantly share code, notes, and snippets.

@matt-land
matt-land / longestStringChain
Created June 14, 2019 13:21
LongestStringChain implementation in python
word_list = ['a',
'b',
'ba',
'bca',
'bda',
'bdca'
]
short = ['a', 'c', 'e']
apple = ['sapple', 'apple', 'a']