Skip to content

Latest commit

 

History

History
10 lines (6 loc) · 485 Bytes

File metadata and controls

10 lines (6 loc) · 485 Bytes

Longest-substring-in-alphabetical-order-in-python

Assume s is a string of lower case characters.

Write a program that prints the longest substring of s in which the letters occur in alphabetical order. For example, if s = 'azcbobobegghakl', then your program should print

Longest substring in alphabetical order is: beggh In the case of ties, print the first substring. For example, if s = 'abcbcd', then your program should print

Longest substring in alphabetical order is: abc