Skip to content

Commit

Permalink
register add_two_numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
SKTT1Ryze committed Oct 11, 2023
1 parent be2bb91 commit f670cfe
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions runtime/src/registration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,8 @@ pub fn register_all(handle: ContainerHandle) -> anyhow::Result<()> {
handle.register_problem(|_| problems::two_sum::TwoSum)?;
handle.register_solution(|_| solutions::two_sum::TwoSum)?;

handle.register_problem(|_| problems::add_two_numbers::AddTwoNumbers)?;
handle.register_solution(|_| solutions::add_two_numbers::AddTwoNumbers)?;

Ok(())
}

0 comments on commit f670cfe

Please sign in to comment.