Skip to content

Instantly share code, notes, and snippets.

View VeeDeltaVee's full-sized avatar

Versha Dhankar VeeDeltaVee

  • Microsoft
  • Redmond
  • 04:41 (UTC -08:00)
View GitHub Profile
@VeeDeltaVee
VeeDeltaVee / main.rs
Created December 3, 2018 13:27
Solution to day 3 problems for Advent of Code 2018
use std::io::Read;
#[derive(Clone, Debug, Hash, PartialEq, Eq, PartialOrd)]
struct Matrix<T> {
rows: usize,
columns: usize,
buf: Vec<T>,
}
#[derive(Clone, Debug, PartialEq, Eq)]