スポンサーリンク

【LeetCode】844. Backspace String Compare 解答・解説【Python】

スポンサーリンク
スポンサーリンク
この記事は約2分で読めます。

 

問題

原文

Given two strings s and t, return true if they are equal when both are typed into empty text editors'#' means a backspace character.

Note that after backspacing an empty text, the text will continue empty.

 

Example 1:

Example 2:

Example 3:

 

Constraints:

  • 1 <= s.length, t.length <= 200
  • s and t only contain lowercase letters and '#' characters.

 

Follow up: Can you solve it in O(n) time and O(1) space?

 

内容

2つの文字列sとtが与えられたとき、空のテキストエディタに両者を入力し、

等しければ真を返してください。

‘#’はバックスペース文字を意味します。

空のテキストをバックスペースした後、テキストは空のままであることに注意してください。

 

※正しくない可能性があります。

 

解答

解答1:Python

 

 

 

解答2:

 

 

 

メモ・参考・感想

 

 

 

前:153. Find Minimum in Rotated Sorted Array

次:986. Interval List Intersections

LeetCode 解答・解説記事一覧

コメント