-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: solve medium/longest-common-subsequence
- Loading branch information
JamesKano0128
committed
Jun 26, 2024
1 parent
7acd626
commit ff45f07
Showing
106 changed files
with
3,101 additions
and
343 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,2 @@ | ||
.idea | ||
.DS_Store | ||
target/ | ||
.vscode | ||
target | ||
Cargo.lock |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,41 @@ | ||
[package] | ||
name = "rust-challenges" | ||
version = "0.1.0" | ||
authors = ["Justin Sexton <[email protected]>"] | ||
edition = "2018" | ||
[workspace] | ||
members = [ | ||
"easy/solve-me-first", | ||
"easy/simple-array-sum", | ||
"easy/compare-the-triplets", | ||
"easy/a-very-big-sum", | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
"medium/magic-square-forming", | ||
"medium/climbing-the-leaderboard", | ||
"medium/extra-long-factorials", | ||
"medium/non-divisible-subset", | ||
"medium/queens-attack2", | ||
"medium/the-time-in-words", | ||
"medium/bigger-is-greater", | ||
"medium/threed-surface-area", | ||
"medium/bear-and-steady-gene", | ||
"medium/minimum-loss", | ||
"medium/connected-cell-in-grid", | ||
"medium/short-palindrome", | ||
"medium/gena-playing-hanoi", | ||
"medium/roads-and-libraries", | ||
"medium/journey-to-moon", | ||
"medium/really-special-subtree", | ||
"medium/snakes-and-ladders", | ||
"medium/shortest-reach", | ||
"medium/special-subtree", | ||
"medium/larry-array", | ||
"medium/sherlock-and-anagrams", | ||
"medium/coin-change", | ||
"medium/pairs", | ||
"medium/red-john-is-back", | ||
"medium/stock-maximize", | ||
"medium/longest-common-subsequence", | ||
|
||
[dependencies] | ||
regex = "1" | ||
rand = "0.8.5" | ||
"hard/matrix-rotation-algo", | ||
"hard/morgan-and-string", | ||
"hard/bead-ornaments", | ||
"hard/string-similarity" | ||
] | ||
|
||
[dev-dependencies] | ||
test-case = "3.2.1" | ||
resolver = "2" |
Oops, something went wrong.