Skip to main content
Manus에서 모든 스킬 실행
원클릭으로
GitHub 저장소

chimera

chimera에는 0bserver07에서 수집한 skills 13개가 있으며, 저장소 수준 직업 범위와 사이트 내 skill 상세 페이지를 제공합니다.

수집된 skills
13
Stars
2
업데이트
2026-05-07
Forks
0
직업 범위
직업 카테고리 3개 · 100% 분류됨
저장소 탐색

이 저장소의 skills

algo-bfs
소프트웨어 개발자

Breadth-first search — shortest path on unweighted graphs, level-order traversal, and the `visited` discipline that prevents O(2^n) blowups.

2026-05-07
algo-binary-search
소프트웨어 개발자

Binary search invariants, half-open intervals, and the `lo<hi` template that beats off-by-one bugs.

2026-05-07
algo-dfs
소프트웨어 개발자

Depth-first search — recursive vs iterative, recursion-depth gotchas, three-color cycle detection, topological sort.

2026-05-07
algo-dp
소프트웨어 개발자

Dynamic programming — state design, memoization vs tabulation, dimension-reduction, and when DP is the wrong tool.

2026-05-07
algo-graph-traversal
소프트웨어 개발자

Pick the right traversal — BFS for unweighted shortest path, Dijkstra for weighted, A* for goal-directed, 0/1-BFS for binary weights.

2026-05-07
algo-greedy
소프트웨어 개발자

Greedy algorithms — exchange-argument proofs, when greedy beats DP, classic patterns (interval scheduling, Huffman, scheduling).

2026-05-07
algo-hash
소프트웨어 개발자

Hash maps and sets — when O(1) lookup pays off, hash collisions, frozen keys, and hashing custom types.

2026-05-07
algo-math-tricks
소프트웨어 개발자

Number-theory and bit-twiddling cheat-sheet — gcd, modular exponentiation, sieve, popcount, divisor enumeration, fast prime tests.

2026-05-07
algo-recursion
소프트웨어 개발자

Recursion — base case, recursive case, recursion-depth limits, tail vs non-tail, when to convert to iteration.

2026-05-07
algo-sliding-window
소프트웨어 개발자

Sliding window — fixed and variable size, expand-shrink invariant, hash-state-tracking for substring problems.

2026-05-07
algo-sorting
컴퓨터 프로그래머

Sorting — when to call the built-in, when to roll your own (counting / radix / heap), stability, custom comparators.

2026-05-07
algo-string-algos
고등교육 컴퓨터공학 교원

String algorithms cheat-sheet — KMP, Rabin-Karp rolling hash, Z-array, suffix arrays, anagram patterns, and when to use built-ins.

2026-05-07
algo-two-pointers
소프트웨어 개발자

Two-pointer scans — opposite ends, same direction, fast/slow — for sorted arrays, partitioning, cycle detection.

2026-05-07