R 讀取 FASTQ 檔

R 的 ShortRead 套件用於處理高通量定序產出的 FASTQ 檔,其功能包含讀寫 FASTQ 檔、計算序列統計量、裁切與篩選低品質序列等。目前,ShortRead 被保留在 Bioconductor ,並由開發團隊持續更新與維護。

Mortal Fibonacci Rabbits (ID: FIBD)

Problem

假設兔子性成熟需一個月,性成熟後每對兔子每個月必繁殖一對子代,若兔子的壽命為 m 月,求第 n 月兔子對數。

Given: Positive integers n≤100 and m≤20.

Return: The total number of pairs of rabbits that will remain after the n-th month if all rabbits live for m months.

# input
6 3
# output
4
Back to top