Well, unexpectedly (perhaps naively so), I only made it to Day 7. I created these before I stumbled upon the idea of the mono-repository; otherwise, I like to think I would have more granular commits introducing this work.
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			157 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			157 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
with import <nixpkgs> {};
 | 
						|
with python35Packages;
 | 
						|
 | 
						|
buildPythonPackage {
 | 
						|
  name = "wpcarro";
 | 
						|
  src = ./day_5.py;
 | 
						|
  propagatedBuildInputs = [ pytest numpy ];
 | 
						|
}
 |