和谐鸡

文章
6
资源
0
加入时间
2年10月21天

[AD]常见错误1

AD16同一个元件中封装焊盘间距可能会小于整体规则设置,从而导致报错:现实的错误:方法一. 在间距规则中增加对“元件”规则的约束:在Query Helper中选择元件判断规则:按错误信息所示把元件标号填写进去:再运行DRC,就不再有错误了:...

git 头指针分离于 baf67ff 解决方法

分离头指针(detached HEAD)通常,我们工作在某一个分支上,比如 master 分支。这个时候 master 指针和 HEAD 指针是一起前进的,每做一次提交,这两个指针就会一起向前挪一步。但是在某种情况下(例如 checkout 了某个具体的 commit),master 指针 和 HEAD 指针这种「绑定」的状态就被打破了,变成了分离头指针状态。我那天遇到的情况是,maste...

C. Number of Pairs

C. Number of PairsYou are given an array a of n integers. Find the number of pairs (i,j) (1≤i<j≤n) where the sum of ai+aj is greater than or equal to l and less than or equal to r (that is, l≤ai+aj≤r).For example, if n=3, a=[5,1,2], l=4 and r=