Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 618 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 618 Bytes

Feynman Algorithm

Allegedly coined in jest by Murray Gell-Mann to describe Richard Feynman's 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

package main

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

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