Advertisement
jabela

Results

Jun 2nd, 2020
355
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. s = 'uostsinxnazdkvfinrrk'
  2. Output:
  3. Longest substring in alphabetical order is: finrr
  4.  
  5. s = 'jnpwwiensqjvjatygpokf'
  6. Output:
  7. Longest substring in alphabetical order is: jnpww
  8.  
  9. s = 'cppbyoayvdfjhtp'
  10. Output:
  11. Longest substring in alphabetical order is: cpp
  12.  
  13. s = 'rsekbgqwalgwxsmrp'
  14. Output:
  15. Longest substring in alphabetical order is: bgqw
  16.  
  17. s = 'ytslflraybyftqklldzy'
  18. Output:
  19. Longest substring in alphabetical order is: flr
  20.  
  21. s = 'bjaptgeagroibzqnv'
  22. Output:
  23. Longest substring in alphabetical order is: apt
  24.  
  25. s = 'jiahguggddjvuymnfakz'
  26. Output:
  27. Longest substring in alphabetical order is: ddjv
  28.  
  29. s = 'abcdefghijklmnopqrstuvwxyz'
  30. Output:
  31. Longest substring in alphabetical order is: abcdefghijklmnopqrstuvwxyz
  32.  
  33. s = 'hlkrfffnvmuckg'
  34. Output:
  35. Longest substring in alphabetical order is: fffnv
  36.  
  37. s = 'qzcbdakn'
  38. Output:
  39. Longest substring in alphabetical order is: akn
  40.  
  41. s = 'lqztlvefiafuufyd'
  42. Output:
  43. Longest substring in alphabetical order is: afuu
  44.  
  45. s = 'zyxwvutsrqponmlkjihgfedcba'
  46. Output:
  47. Longest substring in alphabetical order is: z
  48.  
  49. s = 'hnyjvddztsdoqp'
  50. Output:
  51. Longest substring in alphabetical order is: hny
  52.  
  53. s = 'kvavwdudfvksmqzynzmeyt'
  54. Output:
  55. Longest substring in alphabetical order is: avw
  56.  
  57. s = 'bcfjepgxgbnsbl'
  58. Output:
  59. Longest substring in alphabetical order is: bcfj
  60.  
  61. s = 'swocnjyssfbvhn'
  62. Output:
  63. Longest substring in alphabetical order is: sw
  64.  
  65. s = 'wlmckbvsgdsbzwmfbazvptb'
  66. Output:
  67. Longest substring in alphabetical order is: lm
  68.  
  69. s = 'ruuifmpoogpgfnrs'
  70. Output:
  71. Longest substring in alphabetical order is: fnrs
  72.  
  73. s = 'fgwymizkzupa'
  74. Output:
  75. Longest substring in alphabetical order is: fgwy
  76.  
  77. s = 'mbafcrvopfnjmbpjgngpsm'
  78. Output:
  79. Longest substring in alphabetical order is: crv
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement