Skip to content

Instantly share code, notes, and snippets.

View camilooob's full-sized avatar
💭
Data Engineer

Camilo Baquero camilooob

💭
Data Engineer
View GitHub Profile
@pyjavo
pyjavo / zen_python.md
Last active February 3, 2021 07:28
El zen de Python: Explicado y con ejemplos

El Zen de Python

============ Este post se encuentra publicado en https://pybaq.co/blog/el-zen-de-python-explicado/ ===========

Si alguna vez abren la consola de python y escriben import this verán que les aparecerán las líneas con el famoso Zen de Python:

  1. Beautiful is better than ugly.
  2. Explicit is better than implicit.
@kYroL01
kYroL01 / the_descent.c
Created August 9, 2016 13:58
Solution for game "The Descent" on CodingGame
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
/**
* The while loop represents the game.
* Each iteration represents a turn of the game
* where you are given inputs (the heights of the mountains)
* and where you have to print an output (the index of the moutain to fire on)
* The inputs you are given are automatically updated according to your last actions.