Skip to content

Instantly share code, notes, and snippets.

View asdkant's full-sized avatar

Ariel Kanterewicz asdkant

  • Baufest
  • Buenos Aires, Argentina
View GitHub Profile
anonymous
anonymous / idea_bt
Created April 9, 2014 04:17
//puzzle seria el tablero
backtrack(Puzzle &p){
//poda: si ya sabemos que la rama no puede ganarle a la mejor
//que conocemos hasta el momento, dejamos de explorar esa rama
if( p.maximum_possible_score() <= best_so_far.score() )
return;
//Si ya llegamos hasta el final del tablero,
//vemos el puntaje de esta solucion. Si es mejor que la
@dupuy
dupuy / README.rst
Last active June 25, 2024 15:05
Common markup for Markdown and reStructuredText

Markdown and reStructuredText

GitHub supports several lightweight markup languages for documentation; the most popular ones (generally, not just at GitHub) are Markdown and reStructuredText. Markdown is sometimes considered easier to use, and is often preferred when the purpose is simply to generate HTML. On the other hand, reStructuredText is more extensible and powerful, with native support (not just embedded HTML) for tables, as well as things like automatic generation of tables of contents.