Skip to content

Commit

Permalink
feat: solve medium/longest-common-subsequence
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesKano0128 committed Jun 26, 2024
1 parent 7acd626 commit ff45f07
Show file tree
Hide file tree
Showing 106 changed files with 3,101 additions and 343 deletions.
6 changes: 2 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
.idea
.DS_Store
target/
.vscode
target
Cargo.lock
318 changes: 134 additions & 184 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

49 changes: 38 additions & 11 deletions Cargo.toml
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"
Loading

0 comments on commit ff45f07

Please sign in to comment.