Skip to content

Instantly share code, notes, and snippets.

View diegopso's full-sized avatar
💭
👾

Diego Oliveira diegopso

💭
👾
  • University of Bern
  • Bern, Switzerland
View GitHub Profile
@diegopso
diegopso / AmigoSecreto.js
Last active August 29, 2015 14:03
Amigo Secreto
amigoSecreto = function (vet) {
r = [];
for(i = 0; i < vet.length - 1; i++) {
r.push([vet[i], vet[i + 1]]);
}
r.push([vet[i], vet[0]]);
return r;
};
@diegopso
diegopso / canonize.php
Created June 9, 2014 20:16
Script para canonizar palavras em português
<?php
function canonize($str)
{
$str = slugify($str);
$str = stem($str);
return $str;
}
function stem($str)