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
# 2048.py | |
# Written in python / pygame by DavidSousaRJ - [email protected] | |
# License: Creative Commons | |
# Sorry about some comments in portuguese! | |
import os | |
import sys | |
import pygame | |
from pygame.locals import * | |
from random import randint |
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 __future__ import division | |
from functools import partial | |
import numpy as np | |
from numpy import cos, sin, pi | |
import matplotlib.pyplot as plt | |
from matplotlib import animation | |
from matplotlib import rcParams |
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
using System; | |
using System.Collections.Generic; | |
using System.Collections.ObjectModel; | |
using System.ComponentModel.DataAnnotations; | |
using System.Linq; | |
using System.Linq.Expressions; | |
using System.Reflection; | |
using System.Text.RegularExpressions; | |
using Utilities.Extensions; | |
using Utilities.Patterns; |