# HG changeset patch # User Steve Losh # Date 1579925261 18000 # Node ID 00c3e5a57159b8073aecab887adc15d741734127 # Parent 608cfc181855a765977a0085812bbe3020330bed Update diff -r 608cfc181855 -r 00c3e5a57159 README.markdown --- a/README.markdown Fri Jan 24 20:44:54 2020 -0500 +++ b/README.markdown Fri Jan 24 23:07:41 2020 -0500 @@ -203,7 +203,13 @@ ## 2020-01-24 -Solved the `FIB` Rosalind problem. Tried doing it in straight bash, but -I couldn't figure out how to get the bash function to use a global bash array -for memoization after like 10 minutes of searching. Ended up rewriting it in -Awk, which took two minutes, was simple, and runs fast. Great. +Solved the `FIB` Rosalind problem in my shell/Awk repo. Tried doing it in +straight bash, but I couldn't figure out how to get the bash function to use +a global bash array for memoization after like 10 minutes of searching. Ended +up rewriting it in Awk, which took two minutes, was simple, and runs fast. +Great. + +Solved `MMCH` in my Lisp repo. Much like the previous problem in this line, it +was way easier than they made it seem. Also fixed the Uniprot cache to use the +filesystem instead of just keeping a hash table, to save a few seconds of my +life every time I `(run-tests)` in a fresh Lisp session.