一个骨牌为3格。 当棋盘边长为2,总格数(2^2-1)/3,发现可以整除。 那么因为棋盘边长为2^k,总格数(2^4-1)/3,可以用n^2-1=(n+1)(n-1)拆开,利用上一步,发现可以整除。 可以证的无论棋盘的边长,都可以在有一个奇异点的情况下被整除。 那么我们的目标是把大的棋盘一步步拆成边 ...
分类:
其他好文 时间:
2020-05-15 20:37:43
阅读次数:
83
只有对实际系统行为(即使它在火星)能做端到端的详细追踪(现场调试和日志下载),才能捕获、识别并解决错误。一个不能追踪和调试的黑盒子(即使它在你所在的城市),跟肉包子打狗没有区别。你的设备自带远程调试是非常重要的。 ...
分类:
其他好文 时间:
2020-05-15 15:27:35
阅读次数:
59
效果展示理论基础——“常见的canvas优化——模糊问题、旋转效果” 用离屏canvas画基础部分 1、封装画线函数 function drawLine(ctx,x1,y1,x2,y2,color){ ctx.save(); ctx.beginPath(); ctx.strokeStyle = co ...
分类:
其他好文 时间:
2020-05-15 00:00:56
阅读次数:
89
A Binary Search Tree (BST) is recursively defined as a binary tree which has the following properties: The left subtree of a node contains only nodes ...
分类:
其他好文 时间:
2020-05-11 01:23:35
阅读次数:
61
<?xml version="1.0" encoding="UTF-8"?> <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
分类:
其他好文 时间:
2020-05-10 01:42:42
阅读次数:
288
问题: 给定一个由0,1组成的N*N的数组,问是否能进行多次行交换,列交换,使得数组成为一个国际象棋盘(01交叉排列) 可以则返回交换次数,否则返回-1 Examples: Input: board = [[0,1,1,0],[0,1,1,0],[1,0,0,1],[1,0,0,1]] Output ...
分类:
其他好文 时间:
2020-05-09 17:12:03
阅读次数:
55
Given a stack which can keep M numbers at most. Push N numbers in the order of 1, 2, 3, ..., N and pop randomly. You are supposed to tell if a given s ...
分类:
其他好文 时间:
2020-05-08 18:36:48
阅读次数:
75
1. Good Morning! 2. Good Morning! 3. How can help you? 4. I unserstand that the school organises... 5. umm, trips to different... 6. Yes, we run five ...
分类:
其他好文 时间:
2020-05-06 20:10:54
阅读次数:
95
sentinel 组件分为二部分构成,前台和后端8080 下载:https://github.com/alibaba/Sentinel 前提是你的系统端口:8080端口可用,Java8开发环境是可行的。 命令:java -jar sentinel-dashboard-1.7.0.jar 访问sent ...
分类:
编程语言 时间:
2020-05-06 14:19:20
阅读次数:
76
Recommendation system predicts the preference that a user would give to an item. Now you are asked to program a very simple recommendation system that ...
分类:
其他好文 时间:
2020-05-05 19:47:54
阅读次数:
70