Name | Site | Idea | Promo video | Actual product video |
---|---|---|---|---|
Vizualize | http://vizualize.me/ | CV-infographic generator | Promo video | Actual product video |
Easel.ly | http://www.easel.ly/ | Infographics templates & editor | Promo video | Actual product video |
Piktochart | http://piktochart.com/ | Infographics templates & editor | Promo video | Actual product video |
Infogr.am | http://infogr.am/ | Infographics editor [& infographics video (coming soon, see this) editor] | Promo video | [Actual product video](https://www.youtube.com/wa |
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
# Calculate the nth Fibonacci number, f(n). Using invariants | |
def fibo_tr(n, acc1, acc2) | |
if n == 0 | |
0 | |
elsif n < 2 | |
acc2 | |
else | |
return fibo_tr(n - 1, acc2, acc2 + acc1) | |
end | |
end |