Skip to content

Instantly share code, notes, and snippets.

View flowfelis's full-sized avatar
🏠
Working from home

Alican flowfelis

🏠
Working from home
View GitHub Profile
@flowfelis
flowfelis / tic_tac_toe.py
Last active January 2, 2018 21:29
A Tic Tac Toe Game played by computer.Just watch and enjoy!
import random
storage = list('-' * 9)
player = 'X'
def draw_board():
global player
print('{}\'s turn:'.format(player))
/**
* recover.c
*
* Computer Science 50
* Problem Set 4
*
* Recovers JPEGs from a forensic image.
*/
#include <stdio.h>