(l1: Option<Box<ListNode>>, l2: Option<Box<ListNode>>)
| 110 | } |
| 111 | |
| 112 | pub fn add_two_numbers(l1: Option<Box<ListNode>>, l2: Option<Box<ListNode>>) -> Option<Box<ListNode>> { |
| 113 | Self::add_two_numbers_recursive(l1.as_ref(), l2.as_ref(), 0) |
| 114 | } |
| 115 | } |
| 116 | |
| 117 |
nothing calls this directly
no outgoing calls
no test coverage detected