Welcome! My name is Oliver. I'm an EECS major at UC Berkeley.
I build software of many kinds. I bring easy-to-understand features to users, and still give them maximum freedom. Click the images below for descriptions and Github links of my main projects. |
import math sub factor(n) results = [] for i = 1; i <= sqrt(n); i++ if n % i == 0 newFactors = [i, n / i] results.append(newFactors) end end return results end print factor(2000) |