Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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!

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 main

import "github.com/jdockerty/feynman-algorithm"

func main() {
// ????
answer := feynman.Solve()
}
```