kensremit
I know elixir is a functional programming language and this means can’t make a change state in some problems? Do I am missing something?
Can use any techniques to replace for solution dynamic programming Fibonacci? This is my solution in Golang
package main
import "fmt"
func fib(n int) int {
// make initial array with size (n+1)
answer := make([]int, n+1)
// set answer[0] and answer[1] with default values
answer[0] = 0
answer[1] = 1
// run dynamic programming and memorize steps
// such that answer[i] = answer[i-1] + answer[i-2]
// for each 2 <= i <= n
for i := 2; i <= n; i++ {
answer[i] = answer[i-1] + answer[i-2]
}
// check answer array
fmt.Println(answer)
// fib(n) is last element of answer array
return answer[n]
}
func main() {
// test
fmt.Println(fib(10))
// output: [0 1 1 2 3 5 8 13 21 34 55]
// 55
}
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
I think I’ve found a small improvement I could contribute to <%= web_namespace %>.CoreComponents (installer/templates/phx_web/compo...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Aludel - LLM Evaluation Workbench
Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #elixirconf-us
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 6- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
chungwong
Do you mean this Elixir fibonacci #1 · GitHub
There is a tail call optimised version too.
kokolegorille
This is not possible, because there are no Arrays in Elixir, but linked List
In Elixir, You don’t access list element by index, because it’s expensive.
This is not possible, because i is mutated
Instead, You can have functions that transform input into output.
and if You want to cumulate, You can enumerate a range from 0 to 10 and pass the implementation details.
This is not efficient, as the result is recalculated. But You can make it better with recursion.
Exadra37
If you want to make the shift to functional programming then I strongly recommend that you first read this book:
This is the only book I know that spents a great deal of time educating you how to go from Object Orientated Programming and Procedural Programming to Functional Programming. @pragdave does an excellent job on making it click in our brains, can’t recommend it enough.
If you prefer video form, then he has a video course that does the same:
I have done both and that really helped me to let go away the old way of thinking about coding.
luizdamim
A solution using dynamic programming would be:
I added another solution using
Agenton the gist above (Elixir fibonacci #1 · GitHub).josevalim
You will often see fibonnaci written according to its functional definition but as others pointed out, it is not very efficient as you compute the whole chain on every operation:
However, you can write a looping version, as in Go in Elixir. In Elixir we don’t have traditional loops, instead we use recursion. The other insight is that, in order to compute fibbonacci, we don’t need the whole array of results, only the last two, so we can implement it like this:
It is worth reading more into recursion but one very useful exercise is to see how the execution goes manually. For example, for
fib(5), this is what happens:This is going to have the same perf complexity as the Go one.
This is an advanced topic, so please don’t consider it part of the answer, but there is another cool variant of the algorithm above which is to pack it into a stream. You can think of streams as lazy lists, which are generated on the fly, as needed! Here is a fib stream:
The cool think about the fib stream is that you are totally in control. If you want a single entry, you can have it. If you want a list, you got that too:
Stratus3D
I wrote two blog posts about Fibonacci algorithms in Elixir, posts include benchmarks of all the implementations I evaluated:
This pretty well sums up what I found when I benchmarked the implementations I looked at in those blog posts.