All Questions
1 question
5
votes
6
answers
666
views
String coverage optimization in Python
I have this initial string.
'bananaappleorangestrawberryapplepear'
And also have a tuple with strings:
('apple', 'plepe', 'leoran', 'lemon')
I want a function so that from the initial string and the ...