Skip to content

Commit

Permalink
chore: Add .gitignore, Cargo.toml, and Cargo.lock files for aho-coras…
Browse files Browse the repository at this point in the history
…ick algorithm
  • Loading branch information
JamboChen committed Jul 13, 2024
1 parent 4a6a50f commit aed7a9f
Show file tree
Hide file tree
Showing 4 changed files with 502 additions and 0 deletions.
1 change: 1 addition & 0 deletions code/string_search/aho-corasick/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
7 changes: 7 additions & 0 deletions code/string_search/aho-corasick/Cargo.lock

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

6 changes: 6 additions & 0 deletions code/string_search/aho-corasick/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[package]
name = "ac"
version = "0.1.0"
edition = "2021"

[dependencies]
Loading

0 comments on commit aed7a9f

Please sign in to comment.