edx

this code in python about finding the longest sub-string , i need explaination

this code in python about finding the longest sub-string , i need explaination Question: i am trying to understand how this code works behind the scene , help appreciated explain this part please: MAX = ACCOUNT if len(ACCOUNT) > len(MAX) else MAX ACCOUNT = ACCOUNT + c if c >= ACCOUNT[-1] else c ================================================ S …

Total answers: 1