608cfc181855
Update
author | Steve Losh <steve@stevelosh.com> |
---|---|
date | Fri, 24 Jan 2020 20:44:54 -0500 |
parents | 8a9bbb462b8f |
children | 00c3e5a57159 |
branches/tags | (none) |
files | README.markdown |
Changes
--- 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.