Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 1011 Bytes

index.md

File metadata and controls

37 lines (27 loc) · 1011 Bytes
icon image
home
/assets/lmao2.png

Algorithm Notes

My notes for 122A, 122B and more.

Textbooks

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>