Day 23 hint for improving runtime.

This commit is contained in:
Bill Thiede 2020-12-26 08:25:06 -08:00
parent e04081ac4a
commit e3d9c13731

View File

@ -128,6 +128,8 @@ struct TargetCup {
idx: usize,
}
/// TODO(wathiede): redo based on this sentence from glenng:
/// `So a circular linked list containing 2,1,3 would be [3,1,2]`
#[derive(Debug)]
struct FastHand {
idx_to_val: Vec<usize>,