LeetCode 【LeetCode】 1448. Count Good Nodes in Binary Tree 解答・解説【Python】 はじめに LeetCodeの問題を解答します。 なるべく、問題の和訳と詳細なコメントを書いています。 余裕があれば、複数のアプローチの解答と、実際の面接を想定して英語での解法やコメントを書いています。 様々な... 2023.05.23 LeetCodePythonアルゴリズム再帰深さ優先探索
LeetCode 【LeetCode】 98. Validate Binary Search Tree 解答・解説【Python】 はじめに LeetCodeの問題を解答します。 なるべく、問題の和訳と詳細なコメントを書いています。 余裕があれば、複数のアプローチの解答と、実際の面接を想定して英語での解法やコメントを書いています。 ... 2023.05.14 LeetCodePythonアルゴリズムデータ構造二分探索木二分木深さ優先探索
LeetCode 【LeetCode】40. Combination Sum II 解答・解説【Python】 問題 原文 Given a collection of candidate numbers (candidates) and a target number (target), find all unique combination... 2023.04.30 LeetCodePythonアルゴリズムバックトラッキング深さ優先探索
LeetCode 【LeetCode】200. Number of Islands 解答・解説【Python】 問題 原文 Given an m x n 2D binary grid grid which represents a map of '1's (land) and '0's (water), return the numb... 2023.04.23 LeetCodePythonアルゴリズム深さ優先探索
Python 【LeetCode】46. Permutations 解答・解説【Python】 問題 原文 Given an array nums of distinct integers, return all the possible permutations. You can return the answer in a... 2023.04.15 Pythonアルゴリズム深さ優先探索
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... 2023.04.15 LeetCodePythonアルゴリズム深さ優先探索
LeetCode 【LeetCode】695. Max Area of Island 解答・解説【Python】 はじめに LeetCodeの問題を解答します。 なるべく、問題の和訳と詳細なコメントを書いています。 余裕があれば、複数のアプローチの解答と、実際の面接を想定して英語での解法やコメントを書いています。 様々な... 2023.04.09 LeetCodePythonアルゴリズム深さ優先探索
LeetCode 【LeetCode】733. Flood Fill 解答・解説【Python】 学習メモ 自分の言葉で書くことで理解できていない部分をハッキリさせたい。 問題 原文 An image is represented by an m x n integer grid image where image repr... 2023.04.08 LeetCodePythonアルゴリズム幅優先探索深さ優先探索