This file contains hidden or 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
//Secret track | |
// -- removed _0xe7d4 keywords array | |
function playAudio(track_id) { | |
var audio_object = window.audioObjects[track_id]; | |
if (audio_object) { | |
if (!audio_object.requestPlaying) { | |
audio_object.play(); | |
} else { |
This file contains hidden or 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
// | |
// main.c | |
// heavy_numbers | |
// | |
// Created by Donald Guy on 6/18/13. | |
// Copyright (c) 2013 Donald Guy. All rights reserved. | |
// | |
#include <stdio.h> | |
#include <stdlib.h> |
This file contains hidden or 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
require 'set' | |
$test_board = [['i', 'b', 't'], | |
['m', 'e', 's'], | |
['r', 'o', 'e']] | |
def valid_words_on_board(board, trie = Trie.new(word_list())) | |
valid_words = [] | |
board = Board.new(board) |
NewerOlder