Last active
August 29, 2015 14:02
-
-
Save mryoshio/5941acb68e0596ffaacb to your computer and use it in GitHub Desktop.
Wood Pattern Problem
This file contains 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
#include <iostream> | |
#include <vector> | |
#define MAX_X 5 | |
#define MAX_Y 5 | |
using namespace std; | |
typedef struct { | |
int x[MAX_X]; | |
int y[MAX_Y]; | |
} pattern; | |
vector<pattern> patterns; | |
void search_all_patterns() | |
{ | |
} | |
void remove_duplication() | |
{ | |
} | |
void solve() | |
{ | |
search_all_patterns(); | |
remove_duplication(); | |
} | |
int main() | |
{ | |
solve(); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment