Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joaobap/go-hill-climbing
N-Queens problem solution using Hill-Climbing algorithm rewritten from Common Lisp to Go (https://github.com/joaobap/clisp-hill-climbing)
https://github.com/joaobap/go-hill-climbing
go hill-climbing nqueens-problem
Last synced: 3 months ago
JSON representation
N-Queens problem solution using Hill-Climbing algorithm rewritten from Common Lisp to Go (https://github.com/joaobap/clisp-hill-climbing)
- Host: GitHub
- URL: https://github.com/joaobap/go-hill-climbing
- Owner: joaobap
- Created: 2017-07-08T21:12:07.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-14T16:04:46.000Z (about 7 years ago)
- Last Synced: 2024-08-03T23:30:46.476Z (6 months ago)
- Topics: go, hill-climbing, nqueens-problem
- Language: Go
- Homepage:
- Size: 7.81 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-golang-repositories - go-hill-climbing - Queens problem solution using Hill-Climbing algorithm rewritten from Common Lisp to Go (https://github.com/joaobap/clisp-hill-climbing) (Repositories)
README
# N-Queens problem with Hill-Climbing written in Go
This was written as a reimplementation of an AI exercise written in Lisp
to see the difference in performance just by changing the language and also
as a way to learn about Go.Currently lacks goroutines but it might be added in the future.