Skip to content

Instantly share code, notes, and snippets.

View nicolasfig's full-sized avatar
🧗
Focusing

Nicolas F nicolasfig

🧗
Focusing
View GitHub Profile
@nicolasfig
nicolasfig / beca.py
Created October 10, 2012 14:51
Patron singleton by Rafa.
class BecaEstudiante:
beca= None
cont= 0
@classmethod
def getBeca(cls,nombreBecado):
if cls.cont<5:
cls.cont+=1
cls.beca= BecaEstudiante()
@nicolasfig
nicolasfig / guessMyNumber.py
Created October 16, 2012 23:06
Guess my number simple text game
import random
guessesTaken = 0
print("Hello what is your name?")
name = input()
number = random.randint(1,20)
print("Well",name,",I am thinking of a number between 1 and 20.")
@nicolasfig
nicolasfig / hangman.py
Created October 17, 2012 00:42
Hangman game using random and indexing
import random
HANGMANPICS = ['''
+---+
| |
|
|
|
|
=========''','''
@nicolasfig
nicolasfig / HelloPygame.py
Created October 17, 2012 02:33
Hello world and drawing some shapes using pygame
import pygame, sys
from pygame.locals import *
#Set up pygame
pygame.init()
#Set up the window
windowSurface = pygame.display.set_mode((500, 400), 0 , 32)
pygame.display.set_caption('Hello World')
package recursion;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.OutputStreamWriter;
public class Recursion {
public static void pascalArray(int[][] matrix) {