This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ejemplo { | |
vaca_voladora; | |
constructor() { | |
this.vaca_voladora = Vaca_Voladora; | |
} | |
} | |
class FondoCielo extends Fondo { | |
constructor() { | |
super("fondos/nubes.png", 0, 0); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import re | |
import json | |
import requests | |
class ConsultarDatos: | |
def __init__(self, pagina_base, numero_paginas=1): | |
self.pagina_busquedas = "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# -*- encoding: utf-8 -*- | |
# | |
# Copyright 2014 - Irving Prog | |
# License: LGPLv3 (see http://www.gnu.org/licenses/lgpl.html) | |
def hash_reversed(hash_): | |
LETTERS = 'acdegilmnoprstuw' | |
chars = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ("fmt" | |
"strings") | |
func main() { | |
var letters string = "acdegilmnoprstuw" | |
var chars = []string{} | |
var hash int64 = 956446786872726 | |
var reverse_chars = []string{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from collections import namedtuple | |
def get_directions_to_final_point(labyrinth): | |
def check_neighbour(f, c, direction): | |
""" Check if the neighbour might be added to branch | |
or is needed create a new branch """ | |
if labyrinth[f][c] == 0 and (f, c) not in copy_pos_branch: | |
if len(branch) == len_branch: |