最新 最热

竟态条件 racing condition

多个线程读时,线程是安全的。当两个线程竞争同一资源时,如果对资源的访问顺序敏感,就称存在竞态条件。我的理解,竞态条件就是一种情况。

2019-07-02
0

初识JavaScript柯理化

什么是柯理化 在计算机科学中,柯里化(Currying)是把接受多个参数的函数变换成接受一个单一参数(最初函数的第一个参数)的函数,并且返回接受余下的参数且返回结果的新函数的技术。 把含有N个参数的函数转变成,N个只有一个参...

2019-06-28
1

SceneKit-BlendMode混合模式

SCNMaterial 有一个属性blendMode,这个属性主要控制的是渲染模式的选择,默认值是 SCNBlendModeAlpha

2019-06-15
1

【DP】377. Combination Sum IV

Given an integer array with all positive numbers and no duplicates, find the number of possible combinations that add up to a positive integer target.

2019-06-14
1

samtools`markdup`操作的正确顺序

具体实例在5 一步法找基因变异流程 samtoolsmarkdup操作的正确顺序

2019-06-04
2

LeetCode - 002

https://leetcode.com/problems/add-two-numbers/description/

2019-06-03
1

LeetCode - 001

Given an array of integers, return indices of the two numbers such that they add up to a specific target.

2019-06-03
1

5 一步法找基因变异流程

1 先查看sam文件随机选择3个$ samtools mpileup SRR8517854.bam |head -95|tail -3[mpileup] 1 samples in 1 input fileschr1 10105 N 8 AAAAcAAA kuuu>...

2019-06-03
2

Gitbook 插件安装 - 导航目录折叠 chapter-fold

There is no configuration needed at the moment, can be left empty.

2019-06-02
1

LeetCode-1. Two Sum

Given an array of integers, return indices of the two numbers such that they add up to a specific target.

2019-05-29
1