In an attempt to keep my brain from rusting I decided to try and work through all the Project Euler problems. So far I have solved 72. Still have a lot to go, and I’m sure they will get much harder soon. My current score All problems can be found on my Github Page Here [...]
Archive for the ‘Learning’ Category
TicTacToe – C (procedural style)
This is a simple version of TicTacToe written in C. I wrote this primarily to help a friend of mine. It has virtually no error checking (primarily in regards to the scanf functions, so don’t mess up while inputting!) #include <stdio.h> char board[3][3]; char turn = ‘X’; void init(char board[3][3]); void draw(char [...]
太陽系
これは僕が関西外国語大学にいる時、書いた論文で、内容はそんなに難しくなく、日本語を勉強している人にとって役に立つかもしれません。
Thog Problem
Given the following combinations of shapes and colors:
Rubik’s Cube – 2D Implementation – Java
This is a simple 2D representation of a Rubik’s Cube written in Java. Its main purpose to be easily integrated with other software. I.e. A Rubik’s Cube solving Neural Network. Therefore, the UI is not extremely eye catching. But it serves a good test to demonstrate that the software is working. Later implementations will better [...]


Posted in
Tags:

