28 problems solved
Rank by points: #6532
Total points:
116
1 contest written
Rank by rating: #2459
Rating: 1342
Min. rating: 1342
Max rating: 1342
From Etobicoke C.I., 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
, #