The neat thing about Go is that, whilst the winning strategy is exactly to think ahead and enumerate all possible positions, to do so is impossible. (Even the superhuman AI fudge it. They can just read farther ahead than humans.)

So to do well you have to learn how to support your reading ahead with heuristics and a feel for the game.

A famous amateur player and advocate for the game once went through all the game records of Go Seigen in order to digitize them. This means having to pore over hand-written diagrams looking for the next number in the sequence of moves. Obviously this is easier if you can guess where to look. But, if you guess them all correctly, then you are playing just as well as the old master! After spending a good few months on the task, he was a significantly better player!

> A famous amateur player and advocate for the game once went through all the game records of Go Seigen in order to digitize them. This means having to pore over hand-written diagrams looking for the next number in the sequence of moves. Obviously this is easier if you can guess where to look. But, if you guess them all correctly, then you are playing just as well as the old master! After spending a good few months on the task, he was a significantly better player!

I'd never heard of this!! Who're you talking about?

Nice. As systems become more and more complicated (like real world itself) it is no longer feasible to enumerate all permutations but rather get a feel for the patterns - an intuition. A skilled intuiter (?) would know the subtle ways in which patterns emerge.