pub fn insert_at_position<T: Display>( head: Option<Box<ListNode<T>>>, data: T, pos: usize, ) -> Box<ListNode<T>>