Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
0xBoji committed Aug 29, 2024
1 parent 7860f4e commit c33c520
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,11 @@ pub mod day04_to_day06;
//Day 07 to day 09
pub mod day07_to_day09;
// use day07_to_day09::fibonacci;
use day07_to_day09::linear_search;

// use day07_to_day09::linear_search;
// use day07_to_day09::binary_search;
// use day07_to_day09::bubble_sort;
// use day07_to_day09::palindrome_checker;
use day07_to_day09::fibonacci_sequence;


fn main() {
Expand Down Expand Up @@ -54,7 +57,11 @@ fn main() {
// ownership::run();
// borrowing::run();
// fibonacci::run();
linear_search::run();
// linear_search::run();
// binary_search::run();
// bubble_sort::run();
// palindrome_checker::run();
fibonacci_sequence::run();


}

0 comments on commit c33c520

Please sign in to comment.