Skip to content

Instantly share code, notes, and snippets.

@mryoshio
Last active August 29, 2015 14:02
Show Gist options
  • Save mryoshio/5941acb68e0596ffaacb to your computer and use it in GitHub Desktop.
Save mryoshio/5941acb68e0596ffaacb to your computer and use it in GitHub Desktop.
Wood Pattern Problem
#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