-
NGC 1:
- perfect, no comment 💯
@julitariana
-
The Main problem is that for blinds while using screen readers we have much latency cuz of sherpa models processing algorithm.
How we can fix this problem?
We used punctuation marks to split texts …
-
[https://github.com/YashPatel-15/hactoberfest/blob/main/fibo](url)
-
![fiboresultuncompiled](https://cloud.githubusercontent.com/assets/25257792/22856510/bf4090cc-f060-11e6-913b-ceec0dfb6148.png)
-
Hi,
I'm very interested in this project, and wanted to try it out!
I downloaded it and tried to `cargo run example/test.ml` it using a hand-written tiny `test.ml` file.
I'm getting the following er…
-
Uploading fibo.mp4…
-
#include
int main ()
{
int i;
int a,b,c, qts;
printf("Quantos Termos:");
scanf ("%d", &qts);
a=0;
b=1;
i=1;
while (i
-
Many of the issues labeled [ontology](https://github.com/Sveino/Inst4CIM-KG/issues?q=is%3Aissue+is%3Aopen+label%3Aontology) here rely on SPARQL queries to find problems.
- And those that do the anal…
-
Recursion broken (fibo.js)?
```
var console = require("console");
var fibonacci = function(n)
{
if (n < 2)
{
return n;
}
return fibonacci(n - 2) + fibonacci(n - 1)…
-
fibonacci series using recurssion.