环境:
.net 6
一、问题?
有下面的表达式:
var nums new List<int> { 1, 2, 3 };
Expression<Func<int, bool>> exp i > i > nums.Max();我们知道,它其实就是:exp i > i > 3; 那么…
一、LeetCode 104 二叉树的最大深度
题目链接:104.二叉树的最大深度https://leetcode.cn/problems/maximum-depth-of-binary-tree/ 思路:采用后序遍历递归求解。 class Solution {int ans 0;public int maxDepth(TreeNode root) {if(root null){retur…
准备工作
首先搭建flutter的环境需要使用到flutter的sdk,可以直接跳去官网下载:Choose your first type of app - Flutter 中文文档 - Flutter 中文开发者网站 - Flutter,下载时要注意你电脑所使用的芯片是Intel的还是苹果的芯片。
下载好的…
Codeforces Round 923 (Div. 3)
Codeforces Round 923 (Div. 3)
A. Make it White
题意:略 思路:找最小和最大的‘B’下标即可 AC code:
void solve() {cin >>n;string s; cin>> s;int mn INF, mx 0;for (int i 0; i <…