Skip to content

Instantly share code, notes, and snippets.

View mklemersson's full-sized avatar

mklemersson mklemersson

  • Grover
  • Berlin
View GitHub Profile
@mklemersson
mklemersson / counter.js
Created February 11, 2018 02:06
Simple React Counter
const counter = (state = 0, action) => {
switch (action.type) {
case 'INCREMENT':
return state += 1;
case 'DECREMENT':
return state -= 1;
default:
return state;
@mklemersson
mklemersson / fatorial.php
Last active April 16, 2017 04:29
php - desafio fatorial
<?php
function fatorial($n)
{
if ($n < 2) { // verifica se o '$n' atual e menor que 2 para que a recursao pare
return 1; // retorna o valor do caso base
} else {
return $n * fatorial($n-1); // faz a chamada recursiva para achar o fatorial do numero informado inicialmente
}
}
?>
@mklemersson
mklemersson / argumentador.py
Created April 16, 2017 04:14
python - desafio argumentador
# define a funcao resolver
def resolver(argumento):
# verifica se a o texto/string informado nao e vazio e
# se o primeiro caractere e igual a '<' e o ultimo igual a '>'
return argumento.strip() != '' and (argumento[0] == '<' and argumento[-1] == '>')