@ -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).
Écrire une [fonction](TODO-LINK) qui affiche toutes les solutions du [problème des huit dames](https://en.wikipedia.org/wiki/Eight_queens_puzzle).
## fibonacci
Write an **recursive** function that returns the value of fibonacci sequence matching the index passed as parameter.
Écrire une fonction **récursive** qui renvoie la valeur de la suite de fibonacci correspondant à l'index passé en paramètre.
## findnextprime
Write a function that returns the first prime number that is equal or superior to the `int` passed as parameter.
Écrire une fonction qui renvoie le premier nombre premier qui est égal ou supérieur à l'`int` passé en paramètre.
## isprime
Write a function that returns `true` if the `int` passed as parameter is a prime number. Otherwise it returns `false`.
Écrire une fonction qui renvoie `true` si l'`int` passé en paramètre est un nombre premier. Autrement elle renvoie `false`.
## iterativefactorial
Write an **iterative** function that returns the factorial of the `int` passed as parameter.
Écrire une fonction **itérative** qui renvoie la factorielle d'un `int` passé en paramètre.
## iterativepower
Write an **iterative** function that returns the power of the `int` passed as parameter.
Écrire une fonction **itérative** qui renvoie la puissance de deux `int` passés en paramètre.
## recursivefactorial
Write a **recursive** function that returns the factorial of the `int` passed as parameter.
Écrire une fonction **récursive** qui renvoie la factorielle d'un `int` passé en paramètre.
## recursivepower
Write an **recursive** function that returns the power of the `int` passed as parameter.
Écrire une fonction **récursive** qui renvoie la puissance de deux `int` passés en paramètre.
## sqrt
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`.
É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`.