#' Vérifie si k se trouve sur la colonne j.
#'
#' @return un booléen
existesurcolonne = function(j, k, A) {
for (n in c(1:9) ) {
if ( A[n,j] == k ) {
return(TRUE)
}
}
return(FALSE)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.