Skip to content

Instantly share code, notes, and snippets.

View wiljav's full-sized avatar
🏠
Working from home

William Jawad wiljav

🏠
Working from home
View GitHub Profile
@offchan42
offchan42 / Machine Learning Curriculum.md
Last active March 2, 2024 00:02
Machine learning resources and related artificial intelligence concepts.
@loosechainsaw
loosechainsaw / qunion.cpp
Created August 17, 2013 14:23
Quick Union In C++ From Robert Sedgewicks Algorithms Part 1 Course
#include <iostream>
template<int N>
class quick_union{
public:
quick_union()
{
for(int i =0; i < N; ++i){
elements[i] = i;
}