-
I would like to do add these algorithms to your repo.
Thanks
-
Suggestion to implement a option that enables indentation using Fibonacci series as the image.
![idea](https://user-images.githubusercontent.com/12504551/45055516-63a96a00-b066-11e8-9ba5-5856f2ecfa8a…
-
Write a program that asks the user how many Fibonnaci numbers to generate and then generates them. Take this opportunity to think about how you can use functions. Make sure to ask the user to enter th…
-
## Fibonacci Numbers
[[How to read this blog post]](https://github.com/jdan/j/issues/1)
```ijs
NB. We start our sequence with the pair 0 1
0 1
NB. 0 1
NB. To shift our pair up one step, we…
-
# Description
Compile a sierra fib implementation that uses an array into an llvm IR file
```rs
fn fib(n: u128) -> (Array::, felt, u128) {
let mut arr = array_new::();
array_append::(arr, 1)…
-
# Description
Compile a sierra fib implementation that returns a counter + the result into an llvm IR file
```rs
fn fib(a: felt, b: felt, n: felt) -> (felt, felt) {
match n {
0 => (a, 0),…
-
In https://github.com/jmportilla/Python-for-Algorithms--Data-Structures--and-Interviews/blob/master/Recursion/Recursion%20Interview%20Problems/Recursion%20Problems/Recursion%20Problem%203%20-%20Fibona…
-
I will generate a Fibonacci triangle in cpp
-
-
## Motivation
Currently, extension methods do not support adding static methods/factory constructors. But this is a missed opportunity!
There are many situations where semantically we want a sta…