Pinned Loading
-
Learning-with-Udemy-C-course
Learning-with-Udemy-C-course PublicRelearning how to code in C++ (it's been a while) (pun intended)(please forgive code style, structure & general readability; this is learning/practice only)
C++ 1
-
blog-templates
blog-templates PublicForked from bgoonz/blog-templates
Different styles of web-architecture with a focus on blogging.
JavaScript
-
-
fastfib.js
fastfib.js 1function fastFib(n, memo = {}) {
2if (n in memo) return memo[n];
3if (n === 1 || n === 2) return 1;
4memo[n] = fastFib(n - 1, memo) + fastFib(n - 2, memo);
5return memo[n];
-
linsearch.js
linsearch.js 1function search(array, term) {
2for (let i = 0; i < array.length; i++) {
3if (array[i] === term) {
4return i;
5}
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.