Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jdockerty/feynman-algorithm
Implementation of the Feynman algorithm to solve any problem!
https://github.com/jdockerty/feynman-algorithm
feynman golang problem-solving
Last synced: about 2 months ago
JSON representation
Implementation of the Feynman algorithm to solve any problem!
- Host: GitHub
- URL: https://github.com/jdockerty/feynman-algorithm
- Owner: jdockerty
- License: mit
- Created: 2022-03-15T21:36:55.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-15T21:37:07.000Z (almost 3 years ago)
- Last Synced: 2024-10-13T09:21:26.061Z (3 months ago)
- Topics: feynman, golang, problem-solving
- Language: Go
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Feynman Algorithm
Allegedly coined in jest by [Murray Gell-Mann](https://en.wikipedia.org/wiki/Murray_Gell-Mann) to describe [Richard Feynman's](https://en.wikipedia.org/wiki/Richard_Feynman) incredible problem solving ability, this simple algorithm can be used to solve absolutely anything!
It is very easy to remember, containing only three steps:
1) Write down the problem you are facing.
2) Think very hard about that particular problem.
3) Write down the solution!## Example
```go
package mainimport "github.com/jdockerty/feynman-algorithm"
func main() {
// ????
answer := feynman.Solve()
}
```