News
"Coding Druid" series is my horizontal programming practice notes, each part around a topic (mathematical physics electronic graphics sound...), implemented in several programming languag ...
This repository contains python code for neural network which I implemented from scratch (without using scikit-learn, TensorFlow, or PyTorch) to approximate the sine function The goal of this project ...
from functools import lru_cache from math import sin @lru_cache def sin_half(x): return sin(x)/2 Now, every time you run the decorated function, lru_cache will check for a cached result for the ...
Results that may be inaccessible to you are currently showing.
Hide inaccessible results