LeetCode

LeetCode

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

問題 原文 Given two strings s and t, return true if they are equal when both are typed into empty text editors. '#' mean...
LeetCode

【LeetCode】153. Find Minimum in Rotated Sorted Array 解答・解説【Python】

問題 原文 Suppose an array of length n sorted in ascending order is rotated between 1 and n times. For example, the arra...
LeetCode

【LeetCode】74. Search a 2D Matrix 解答・解説【Python】

問題 原文 You are given an m x n integer matrix matrix with the following two properties: Each row is sorted in non...
LeetCode

【LeetCode】77. Combinations 解答・解説【Python】

問題 原文 Given two integers n and k, return all possible combinations of k numbers chosen from the range . You may r...
LeetCode

【LeetCode】695. Max Area of Island 解答・解説【Python】

はじめに LeetCodeの問題を解答します。 なるべく、問題の和訳と詳細なコメントを書いています。 余裕があれば、複数のアプローチの解答と、実際の面接を想定して英語での解法やコメントを書いています。 様々な...
LeetCode

【LeetCode】733. Flood Fill 解答・解説【Python】

学習メモ 自分の言葉で書くことで理解できていない部分をハッキリさせたい。 問題 原文 An image is represented by an m x n integer grid image where image repr...
LeetCode

【LeetCode】567. Permutation in String 解答・解説【Python】

学習メモ 自分の言葉で書くことで理解できていない部分をハッキリさせたい。 問題 原文 Given two strings s1 and s2, return true if s2 contains a permutation o...
LeetCode

【LeetCode】19. Remove Nth Node From End of List 解答・解説【Python】

学習メモ。 自分の言葉で書くことで理解できていない部分をはっきりさせる。 問題 原文 Given the head of a linked list, remove the nth node from the end of th...
LeetCode

【LeetCode】344. Reverse String 解答・解説【Python】

問題 原文 Write a function that reverses a string. The input string is given as an array of characters s. You must do...
LeetCode

【LeetCode】167. Two Sum II – Input Array Is Sorted 解答・解説【Python】

問題 原文 Given a 1-indexed array of integers numbers that is already sorted in non-decreasing order, find two numbers s...