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
from collections import Counter | |
class Letterpress(object): | |
DICTIONARY = "Words/Words/en.txt" | |
def __init__(self, available): | |
"""Inialize letterpress object""" | |
self.words = self.build_words() |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <ctype.h> | |
#define MEM_SIZE 30000 | |
#define BUF_SIZE 2000 | |
void execute(const char prg[]); | |
int read_file(FILE *f, char buf[], const int bufsize); |
NewerOlder