📦
Making your R code easier to reuse
Geneticist 🧬, computer scientist 𝝺 and software engineer 👨💻.
Pinned Loading
-
-
cpp11-range
cpp11-range PublicRange-based for loops to iterate over a range of numbers or values
-
gpoore/minted
gpoore/minted Publicminted is a LaTeX package that provides syntax highlighting using the Pygments library. Highlighted source code can be customized using fancyvrb.
-
Efficient, tail recursive fibonacci ...
Efficient, tail recursive fibonacci implementation for R and Python (but since they doesn’t do TCO it’s still using O(n) space) 1def fib(n: int) -> int:
2def f(n, a, b):
3if n == 0: return a
4if n == 1: return b
5return f(n - 1, b, a + b)
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.