Skip to content

Commit dd2add9

Browse files
committed
refactor: problem solving
1 parent e7877bb commit dd2add9

17 files changed

+16
-16
lines changed

Diff for: problem-solving/Cargo.toml

+16-16
Original file line numberDiff line numberDiff line change
@@ -10,66 +10,66 @@ _lib = { path = "../_lib" }
1010

1111
[[bin]]
1212
name = "practical_number"
13-
path = "basic/practical_number.rs"
13+
path = "src/basic/practical_number.rs"
1414

1515
[[bin]]
1616
name = "gcd"
17-
path = "basic/gcd.rs"
17+
path = "src/basic/gcd.rs"
1818

1919
[[bin]]
2020
name = "reverse_integer"
21-
path = "basic/reverse_integer.rs"
21+
path = "src/basic/reverse_integer.rs"
2222

2323
[[bin]]
2424
name = "median"
25-
path = "basic/median.rs"
25+
path = "src/basic/median.rs"
2626

2727
[[bin]]
2828
name = "linear_regression"
29-
path = "basic/linear_regression.rs"
29+
path = "src/basic/linear_regression.rs"
3030

3131
[[bin]]
3232
name = "comprehension"
33-
path = "basic/comprehension.rs"
33+
path = "src/basic/comprehension.rs"
3434

3535
[[bin]]
3636
name = "matrix_multiplication"
37-
path = "basic/matrix_multiplication.rs"
37+
path = "src/basic/matrix_multiplication.rs"
3838

3939
[[bin]]
4040
name = "color_converter"
41-
path = "basic/color_converter.rs"
41+
path = "src/basic/color_converter.rs"
4242

4343
# ============================[ Dynamic Programmign]============================
4444

4545
[[bin]]
4646
name = "consecutive"
47-
path = "dp/consecutive_groups.rs"
47+
path = "src/dp/consecutive_groups.rs"
4848

4949
[[bin]]
5050
name = "repeat"
51-
path = "dp/repeat.rs"
51+
path = "src/dp/repeat.rs"
5252

5353
[[bin]]
5454
name = "minimize_sum"
55-
path = "dp/minimize_sum.rs"
55+
path = "src/dp/minimize_sum.rs"
5656

5757
[[bin]]
5858
name = 'two_sum'
59-
path = "dp/two_sum.rs"
59+
path = "src/dp/two_sum.rs"
6060

6161
[[bin]]
6262
name = "fibonacci"
63-
path = "dp/fibonacci.rs"
63+
path = "src/dp/fibonacci.rs"
6464

6565
[[bin]]
6666
name = 'lcs'
67-
path = "dp/longest_common_subsequence.rs"
67+
path = "src/dp/longest_common_subsequence.rs"
6868

6969
[[bin]]
7070
name = 'coin_change'
71-
path = 'dp/coin_change.rs'
71+
path = 'src/dp/coin_change.rs'
7272

7373
[[bin]]
7474
name = 'palindrome_partition'
75-
path = 'dp/palindrome_partition.rs'
75+
path = 'src/dp/palindrome_partition.rs'
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)