题目描述:二叉树的层序遍历,按层数输出每一层的结果数组 代码实现
class Solution {public List<List<Integer>> levelOrder(TreeNode root) {List<List<Integer>> res new ArrayList<List<Integer>>();Queue<…
原题链接在这里:https://leetcode.com/problems/flip-game/description/ 题目: You are playing the following Flip Game with your friend: Given a string that contains only these two characters: and -, you and your friend take turns to flip…