add chess engine task - #48
Open
rosa479 wants to merge 1 commit into
Open
Conversation
Contributor
|
|
||
| - For brownie points, write a basic and functional chess engine. You may use a library for UI and legal move generation (or maybe not for double brownie points). Your focus should be implementing a custom evaluation function and a Minimax search function (depth 2 or 3) that allows the computer to play a valid game against a human in the terminal. | ||
|
|
||
| - A GitHub repository which contains your code (if any) along with a .md file or any other form of documentation containing your learning process is the expected end product. |
Member
There was a problem hiding this comment.
For teaching tasks, asking them to make a presetation of sorts is better than asking the to just write code. Tbh, writing code is not even necessary.
One of the main reasons why we tried to avoid coding tasks is because people use AI or just copy code from somewhere and explain it on a high level. Teaching tasks were much better to judge someone.
| - A GitHub repository which contains your code (if any) along with a .md file or any other form of documentation containing your learning process is the expected end product. | ||
|
|
||
|
|
||
| ## Tech-Stack |
Member
There was a problem hiding this comment.
This section is unnecessary.
| - **Alpha-Beta Pruning** - how the engine reduces the possibilities to be calculated | ||
| - and more if you wish to :D | ||
|
|
||
| - For brownie points, write a basic and functional chess engine. You may use a library for UI and legal move generation (or maybe not for double brownie points). Your focus should be implementing a custom evaluation function and a Minimax search function (depth 2 or 3) that allows the computer to play a valid game against a human in the terminal. |
Member
There was a problem hiding this comment.
Writing a full chess engine might not be possible in the given time. It's fine for Brownie points. However, it migh be possible to write some kind of very simple board evaluation algorithm or a part of it. Maybe that could be part of the core task?
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Added algorithm-heavy selection task of dissecting a chess engine