# HG changeset patch # User Steve Losh # Date 1579916694 18000 # Node ID 608cfc181855a765977a0085812bbe3020330bed # Parent 8a9bbb462b8f781a8632d8691a75bf00368ffbf4 Update diff -r 8a9bbb462b8f -r 608cfc181855 README.markdown --- a/README.markdown Fri Jan 24 00:11:45 2020 -0500 +++ b/README.markdown Fri Jan 24 20:44:54 2020 -0500 @@ -200,3 +200,10 @@ 16. TODO 17. TODO 18. TODO + +## 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.