Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
puzzleplayer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Floris
puzzleplayer
Commits
31d653c8
Commit
31d653c8
authored
4 months ago
by
bionic85
Browse files
Options
Downloads
Patches
Plain Diff
bababa
parent
577d1e3c
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
PuzzlePlayer/Binair.cs
+8
-0
8 additions, 0 deletions
PuzzlePlayer/Binair.cs
PuzzlePlayer/Board.cs
+1
-0
1 addition, 0 deletions
PuzzlePlayer/Board.cs
with
9 additions
and
0 deletions
PuzzlePlayer/Binair.cs
+
8
−
0
View file @
31d653c8
...
...
@@ -8,8 +8,16 @@ namespace PuzzlePlayer_Namespace
{
internal
class
Binair
:
Board
{
//
public
int
[,]
boardState
{
get
;
set
;
}
private
int
[,]
board
;
public
Binair
(
int
boardSize
)
{
board
=
new
int
[
boardSize
,
boardSize
];
}
public
static
void
Generate
()
{
throw
new
NotImplementedException
();
...
...
This diff is collapsed.
Click to expand it.
PuzzlePlayer/Board.cs
+
1
−
0
View file @
31d653c8
...
...
@@ -9,6 +9,7 @@ namespace PuzzlePlayer_Namespace
{
public
interface
Board
{
// interface should have a property to get or set the current boardstate
int
[,]
boardState
{
get
;
set
;
}
public
abstract
static
void
Solve
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment