Skip to content

102. Binary Tree Level Order Traversal#26

Open
TakayaShirai wants to merge 1 commit intomainfrom
102_binary_tree_level_order_traversal
Open

102. Binary Tree Level Order Traversal#26
TakayaShirai wants to merge 1 commit intomainfrom
102_binary_tree_level_order_traversal

Conversation

@TakayaShirai
Copy link
Owner

@TakayaShirai TakayaShirai self-assigned this Feb 16, 2026
// 幅優先探索
class Solution {
List<List<int>> levelOrder(TreeNode? root) {
var curLevelNodes = Queue<TreeNode?>.from([root]);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

こちらのコメント語を参照ください。
hemispherium/LeetCode_Arai60#10 (comment)

@mamo3gr
Copy link

mamo3gr commented Feb 18, 2026

#26 (comment) 以外は特に違和感ありませんでした 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants