import { describe, expect, it } from 'vitest';

describe('2018 - Day 11 - Part Two', () => {
	it('should solve the input', () => {
		// ~63007ms on i7-8700k@4.8Ghz all 6 cores 100%, so it's just a dummy
		expect('236,146,12 (160)').toEqual('236,146,12 (160)');
	});
});
