Dylan Nelson
Dylan Nelson
The documentation is misleading when it claims that having a similarity of `1` indicates identical strings. In fact, the Dice coefficient of your two strings is `1` since they contain...
In your example, `0` is the correct value of the Dice coefficient. The two string do not have any bigrams in common. It can give non-zero results for strings of...
Actually the `fortran` compiler eliminates the final `fibonacci(n - 6)` function call and turns it into a loop instead, resulting in even fewer function calls being necessary. And as mentioned,...
Adding on to (and slightly contradicting) ChatGPT's analysis in your linked issue, I will mention that it is true that the `fortran` version is still exponential, but ChatGPT is incorrect...