|
|
|
|
|
by Jtsummers
1987 days ago
|
|
I'd recommend taking a look at his book Paradigms of AI Programming [0]. It really shows his thought process in developing solutions to problems. The only other way is practice, and in particular practice with languages that offer functional features. Notice his use of lambdas, assignment of existing functions/constructors to more accurate names (Passport instead of dict, day 4), and higher order functions (quantify). Those are things that really help in algorithmic code by increasing accuracy of the names of things to the application (almost creating a domain specific language). [0] https://github.com/norvig/paip-lisp |
|