アルゴリズム

LeetCode

【LeetCode】986. Interval List Intersections 解答・解説【Python】

問題 原文 You are given two lists of closed intervals, firstList and secondList, where firstList =  and secondLi...
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...
Python

【LeetCode】46. Permutations 解答・解説【Python】

問題 原文 Given an array nums of distinct integers, return all the possible permutations. You can return the answer in a...
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...
Python

【LeetCode】617. Merge Two Binary Trees 解答・解説【Python】

問題 原文 You are given two binary trees root1 and root2. Imagine that when you put one of them to cover the other, s...
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...