深さ優先探索

LeetCode

【LeetCode】 1448. Count Good Nodes in Binary Tree 解答・解説【Python】

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

【LeetCode】 98. Validate Binary Search Tree 解答・解説【Python】

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

【LeetCode】40. Combination Sum II 解答・解説【Python】

問題 原文 Given a collection of candidate numbers (candidates) and a target number (target), find all unique combination...
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...
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...
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...
スポンサーリンク