题目描述 珠心算是一种通过在脑中模拟算盘变化来完成快速运算的一种计算技术。珠心算训练,既能够开发智力,又能够为日常生活带来很多便利,因而在很多学校得到普及。 某学校的珠心算老师采用一种快速考察珠心算加法能力的测验方法。他随机生成一个正整数集合,集合中的数各不相同,然后要求学生回答:其中有多少个数,恰 ...
分类:
其他好文 时间:
2020-01-12 20:13:09
阅读次数:
83
BUG 记录 报错页面的代码和截图: Cannot access alimaven (maven.aliyun.com/nexus/conte…..... 解决方法: 报错页面的代码和截图: JAR will be empty - no content was marked for inclusio ...
分类:
数据库 时间:
2020-01-11 13:12:01
阅读次数:
422
link to problem Description: Given a rooted binary tree, return the lowest common ancestor of its deepest leaves. Recall that: The node of a binary tr ...
分类:
其他好文 时间:
2020-01-09 11:52:53
阅读次数:
82
题目如下: You are given a square board of characters. You can move on the board starting at the bottom right square marked with the character 'S'. You nee ...
分类:
其他好文 时间:
2019-12-29 10:57:18
阅读次数:
68
This class (or a class which this class inherits from) is marked as '@immutable', but one or more of 搜索到解决方法地址: https://www.cnblogs.com/110-913-1025/p ...
分类:
移动开发 时间:
2019-12-25 01:18:57
阅读次数:
167
236. Lowest Common Ancestor of a Binary Tree - 若p和q分别位于左右子树中,那么对左右子结点调用递归函数,会分别返回p和q结点的位置,而当前结点正好就是p和q的最小共同父结点,直接返回当前结点即可,这就是题目中的例子1的情况。 - 若p和q同时位于左子树 ...
分类:
其他好文 时间:
2019-12-23 13:05:41
阅读次数:
86
A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below). The robot can only move either down or right at any p ...
分类:
其他好文 时间:
2019-12-16 09:18:17
阅读次数:
102
原题链接在这里:https://leetcode.com/problems/lowest-common-ancestor-of-deepest-leaves/ 题目: Given a rooted binary tree, return the lowest common ancestor of i ...
分类:
其他好文 时间:
2019-12-15 12:35:00
阅读次数:
79
本篇更换 Hexo 下的 Markdown 渲染插件学习 Markdown 基本语法?更换 Markdown 渲染插件?原因Hexo 内置的默认渲染插件是 hexo-renderer-marked,缺少很多功能,比如 GFM (GitHub Flavored Markdown)、上下标、脚注、emo... ...
分类:
其他好文 时间:
2019-12-10 00:50:48
阅读次数:
144
Given a binary tree, find the lowest common ancestor (LCA) of two given nodes in the tree. According to the definition of LCA on Wikipedia: “The lowes ...
分类:
其他好文 时间:
2019-12-08 01:34:55
阅读次数:
120