This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### See https://github.com/be5invis/Iosevka/blob/master/doc/custom-build.md for comprehensive | |
### documentation of the options in this file | |
# TL;DR instructions: | |
# Installation: | |
# brew install node ttfautohint fontforge | |
# git clone --depth 1 https://github.com/be5invis/Iosevka.git | |
# npm install | |
# Compilation: | |
# Copy private-build-plans.toml to repo root. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Verify that Fibonacci sequence follows Benford's law.""" | |
from pprint import pprint | |
def fibonacci(n): | |
a, b = 0, 1 | |
for i in range(n): | |
a, b = b, a + b | |
return a |