Skip to content

Commit

Permalink
register LongestSubstring
Browse files Browse the repository at this point in the history
  • Loading branch information
SKTT1Ryze committed Oct 12, 2023
1 parent 8044bb3 commit 41603f3
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 @@ -9,5 +9,8 @@ pub fn register_all(handle: ContainerHandle) -> anyhow::Result<()> {
handle.register_problem(|_| problems::add_two_numbers::AddTwoNumbers)?;
handle.register_solution(|_| solutions::add_two_numbers::AddTwoNumbers)?;

handle.register_problem(|_| problems::longest_substring::LongestSubstring)?;
handle.register_solution(|_| solutions::longest_substring::LongestSubstring)?;

Ok(())
}

0 comments on commit 41603f3

Please sign in to comment.