Explore skills
4,856 skills found
Category alert
Get new DevOps e Infra skills every Monday
alphafold-structure-prediction
AlphaFold/ESMFold structure prediction and confidence interpretation.
algo-tries
Prefix tree for O(m) string insert/search and O(p+k) prefix queries; ideal for autocomplete and dictionary membership.
algo-topological-sort
Topological sort using DFS and Kahn's BFS algorithms for DAG ordering, cycle detection, and critical path analysis.
polish
A completion-claim gate that requires outputting the self-check table and fixing any ✗ rows before reporting completion. This is a lean discipline-gate version.
algo-tabulation
Bottom-up Dynamic Programming with tabulation, covering edit distance, LCS, and space optimization using rolling arrays.
algo-suffix-arrays
Suffix arrays are a space-efficient sorted suffix index, offering O(n log n) construction and O(m log n) pattern search.
algo-stacks-queues
Stack (LIFO) and Queue (FIFO) — array and linked-list implementations, O(1) operations, common applications.
ai-science-diffusion-generative-models
Score matching, noise schedules, DDIM sampling, and DDRM inverse problems for diffusion generative models.
algo-sequence-alignment
Needleman-Wunsch global and Smith-Waterman local sequence alignment, including DP table fill, traceback, and scoring matrices.
algo-red-black-trees
Red-black tree: a self-balancing BST with O(log n) operations, maintaining 5 invariants, and fixing insertions with rotations and recoloring.
algo-naive-pattern-matching
Naive O(nm) brute-force string matching — sliding window baseline, when acceptable, motivation for KMP/Rabin-Karp.
algo-linear-sorts
Counting sort, radix sort, and bucket sort are O(n) non-comparison sorts that bypass the Omega(n log n) lower bound.