Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 1.38 KB

README.md

File metadata and controls

24 lines (19 loc) · 1.38 KB

Rust Raid

4. Problem Solving

  1. Practical Number cargo run --bin practical_number
  2. Greatest Common Divisor cargo run --bin gcd
  3. Median cargo run --bin median
  4. Reverse digits of the integer cargo run --bin reverse_integer
  5. List Comprehension cargo run --bin comprehension
  6. Linear Regression Model cargo run --bin linear_regression
  7. Matrix Multiplication Model cargo run --bin matmul
  1. List group by consecutive numbers cargo run --bin consecutive_groups
  2. Find the length of the longest substring with maximum 2 repetitioncargo run --bin repeat
  3. Find the index of 2 numbers in an array whose sum equals to the provided target cargo run --bin two_sum
  4. Minimize the Sum from an array cargo run --bin minimize_sum
  5. Fibonacci Series cargo run --bin fibonacci
  6. Longest Common Subsequence cargo run --bin lcs
  7. Coin Change Problem cargo run --bin coin_change
  8. Palindrome Partition cargo run --bin palindrome_partition