https://leetcode.com/problems/sum-of-two-integers/
Calculate the sum of two integers a and b, but you are not allowed to use the operator and -.
Example: Given a 1 and b 2, return 3.
注释,这个题目有意思,学过FPGA的人都知道最基本…
https://leetcode.com/problems/maximum-depth-of-binary-tree/
Given a binary tree, find its maximum depth.
The maximum depth is the number of nodes along the longest path from the root node down to the farthest leaf node.
求给定二叉树的最大的深度ÿ…