31 problems solved
Rank by points: #3476
Total points:
118
1 contest written
Rank by rating: #1198
Rating: 1303
Volatility: 385
Min. rating: 1303
Max rating: 1303
From Etobicoke Collegiate Institute, University of Toronto
About
define FOR(i, n) for(int i = 0; i < n; i++)
int gcd(int a, int b) {
while(b != 0) {
int n = b;
b = a % b;
a = n;
}
return a;
}
Just practising some ~\LaTeX~
~e^{i\theta} = i\sin\theta + \cos\theta~
Rating history
, #