摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 4 #define N 15 5 6 int chessboard[N + 1][N + 1] = { 0 }; 7 8 int whoseTurn = 0; 9 10 void initGame(void); 阅读全文
posted @ 2016-03-25 23:08 叶建成 阅读(570) 评论(0) 推荐(1) 编辑
摘要: 1 <!doctype html> 2 <html> 3 4 <head> 5 <meta charset="utf-8"> 6 <title>Baymax</title> 7 8 <style> 9 body { 10 background: #595959; 11 } 12 13 #baymax 阅读全文
posted @ 2016-03-25 20:43 叶建成 阅读(946) 评论(1) 推荐(1) 编辑
摘要: 1 #-*- coding:utf-8 -*- 2 3 import curses 4 from random import randrange, choice # generate and place new tile 5 from collections import defaultdict 6 阅读全文
posted @ 2016-03-25 20:09 叶建成 阅读(918) 评论(0) 推荐(0) 编辑