Problem Solver
I'm currently taking Data Structures & Algorithms, Databases, Advanced OOP, and Combinatorics.
SWE Intern on Monetization.
SWE Intern on Vehicle Tracking.
Competitive math and computing for 100+ high school students.
My PB's: 800m: 2:09, 1000m: 2:51, 5km: 18:06, 10km: 41: 56, Half-Marathon: 1:29:58, Marathon: 3:17:02.
President of the magic and cardistry club.
1
2
3
4
5
6
7
8
9
10
fn fibonacci (n) {
if |n <= 2| { return 1 }
let prev = 1; let curr = 1;
from 2 to n with i {
let next_value = prev + curr
prev = curr
curr = next_value
}
return curr
}
Meta script is an interpreter with support for user defined functions, I/O, loops, conditionals.
Explore my open-source contributions, project activity, and coding journey on GitHub.
I'm always excited to discuss new opportunities and innovative solutions.