
Welcome to my personal GitHub User Page!
I am a computer science student at UCSD and programming is my passion. I enjoy working with C++, Python, and web development. I also love to play volleyball and video games (namely VALORANT, PEAK, and Brawl Stars)
“Code is like humor. When you have to explain it, it’s bad.” – Cory House
// A blunder my friend made a year ago, still makes me laugh thinking about it.
bool operator==(const Poly &lhs, const Poly &rhs)
{
if(lhs == rhs){
return true;
}
return false;
}