LeetCode Problem: Length of Last Word

Поделиться
HTML-код
  • Опубликовано: 17 янв 2025

Комментарии • 2

  • @tsoeng
    @tsoeng 14 дней назад

    A much more performant code for long strings would be:
    s = s.strip();
    print(len(s[s.rfind(' ')+1:]));

    • @geniuschrist
      @geniuschrist  14 дней назад +1

      I can see how that would be the case. Thank you!