icon | image |
---|---|
home |
/assets/lmao2.png |
My notes for 122A, 122B and more.
- UIUC textbook (Free to read)
- CLRS
- Algorithm Design by Kleinberg
Fetching last updated date...
<script defer> window.onload = function() { const element = document.getElementById("updateDate1222"); const url = "https://api.github.com/repos/tomli380576/algorithm-notes/commits"; fetch(url) .then((res) => res.json()) .then((json) => { const dateStr = json[0].commit.author.date; element.innerHTML = `Last updated: ${new Date( dateStr ).toLocaleDateString()}`; }); } </script>