Browse Source

fixed instructions typo

pull/261/head^2
Yenlik29 5 years ago committed by Xavier Petit
parent
commit
80ab3c8176
  1. 2
      subjects/eightqueens.en.md
  2. 2
      subjects/eightqueens.fr.md
  3. 2
      subjects/fibonacci.en.md
  4. 2
      subjects/fibonacci.fr.md
  5. 2
      subjects/findnextprime.en.md
  6. 2
      subjects/findnextprime.fr.md
  7. 2
      subjects/isprime.en.md
  8. 2
      subjects/isprime.fr.md
  9. 2
      subjects/iterativefactorial.en.md
  10. 2
      subjects/iterativefactorial.fr.md
  11. 2
      subjects/iterativepower.en.md
  12. 2
      subjects/iterativepower.fr.md
  13. 2
      subjects/recursivefactorial.en.md
  14. 2
      subjects/recursivefactorial.fr.md
  15. 2
      subjects/recursivepower.en.md
  16. 2
      subjects/recursivepower.fr.md
  17. 2
      subjects/sqrt.en.md
  18. 2
      subjects/sqrt.fr.md

2
subjects/eightqueens.en.md

@ -1,6 +1,6 @@
## eightqueens
### Intructions
### Instructions
Write a function that prints the solutions to the [eight queens puzzle](https://en.wikipedia.org/wiki/Eight_queens_puzzle).

2
subjects/eightqueens.fr.md

@ -1,6 +1,6 @@
## eightqueens
### Intructions
### Instructions
Écrire une [fonction](TODO-LINK) qui affiche toutes les solutions du [problème des huit dames](https://en.wikipedia.org/wiki/Eight_queens_puzzle).

2
subjects/fibonacci.en.md

@ -1,6 +1,6 @@
## fibonacci
### Intructions
### Instructions
Write an **recursive** function that returns the value of fibonacci sequence matching the index passed as parameter.

2
subjects/fibonacci.fr.md

@ -1,6 +1,6 @@
## fibonacci
### Intructions
### Instructions
Écrire une fonction **récursive** qui renvoie la valeur de la suite de fibonacci correspondant à l'index passé en paramètre.

2
subjects/findnextprime.en.md

@ -1,6 +1,6 @@
## findnextprime
### Intructions
### Instructions
Write a function that returns the first prime number that is equal or superior to the `int` passed as parameter.

2
subjects/findnextprime.fr.md

@ -1,6 +1,6 @@
## findnextprime
### Intructions
### Instructions
Écrire une fonction qui renvoie le premier nombre premier qui est égal ou supérieur à l'`int` passé en paramètre.

2
subjects/isprime.en.md

@ -1,6 +1,6 @@
## isprime
### Intructions
### Instructions
Write a function that returns `true` if the `int` passed as parameter is a prime number. Otherwise it returns `false`.

2
subjects/isprime.fr.md

@ -1,6 +1,6 @@
## isprime
### Intructions
### Instructions
Écrire une fonction qui renvoie `true` si l'`int` passé en paramètre est un nombre premier. Autrement elle renvoie `false`.

2
subjects/iterativefactorial.en.md

@ -1,6 +1,6 @@
## iterativefactorial
### Intructions
### Instructions
Write an **iterative** function that returns the factorial of the `int` passed as parameter.

2
subjects/iterativefactorial.fr.md

@ -1,6 +1,6 @@
## iterativefactorial
### Intructions
### Instructions
Écrire une fonction **itérative** qui renvoie la factorielle d'un `int` passé en paramètre.

2
subjects/iterativepower.en.md

@ -1,6 +1,6 @@
## iterativepower
### Intructions
### Instructions
Write an **iterative** function that returns the power of the `int` passed as parameter.

2
subjects/iterativepower.fr.md

@ -1,6 +1,6 @@
## iterativepower
### Intructions
### Instructions
Écrire une fonction **itérative** qui renvoie la puissance de deux `int` passés en paramètre.

2
subjects/recursivefactorial.en.md

@ -1,6 +1,6 @@
## recursivefactorial
### Intructions
### Instructions
Write a **recursive** function that returns the factorial of the `int` passed as parameter.

2
subjects/recursivefactorial.fr.md

@ -1,6 +1,6 @@
## recursivefactorial
### Intructions
### Instructions
Écrire une fonction **récursive** qui renvoie la factorielle d'un `int` passé en paramètre.

2
subjects/recursivepower.en.md

@ -1,6 +1,6 @@
## recursivepower
### Intructions
### Instructions
Write an **recursive** function that returns the power of the `int` passed as parameter.

2
subjects/recursivepower.fr.md

@ -1,6 +1,6 @@
## recursivepower
### Intructions
### Instructions
Écrire une fonction **récursive** qui renvoie la puissance de deux `int` passés en paramètre.

2
subjects/sqrt.en.md

@ -1,6 +1,6 @@
## sqrt
### Intructions
### Instructions
Write a function that returns the square root of the `int` passed as parameter if that square root is a whole number. Otherwise it returns `0`.

2
subjects/sqrt.fr.md

@ -1,6 +1,6 @@
## sqrt
### Intructions
### Instructions
Écrire une fonction qui renvoie la racine carré d'un `int` passé en paramètre as parameter si cette racine carré est un nombre entier. Autrement elle renvoie `0`.

Loading…
Cancel
Save