├── .github └── workflows │ ├── post-diffs-in-pr.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── compiled_starters ├── c │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ ├── .gitattributes │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ ├── codecrafters.yml │ ├── src │ │ └── main.c │ ├── vcpkg-configuration.json │ ├── vcpkg.json │ └── your_program.sh ├── cpp │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ ├── .gitattributes │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ ├── codecrafters.yml │ ├── src │ │ └── main.cpp │ ├── vcpkg-configuration.json │ ├── vcpkg.json │ └── your_program.sh ├── csharp │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ ├── .gitattributes │ ├── .gitignore │ ├── README.md │ ├── codecrafters-grep.csproj │ ├── codecrafters-grep.sln │ ├── codecrafters.yml │ ├── src │ │ └── Program.cs │ └── your_program.sh ├── gleam │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ ├── .gitattributes │ ├── .gitignore │ ├── README.md │ ├── codecrafters.yml │ ├── gleam.toml │ ├── manifest.toml │ ├── src │ │ └── main.gleam │ └── your_program.sh ├── go │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ ├── .gitattributes │ ├── README.md │ ├── app │ │ └── main.go │ ├── codecrafters.yml │ ├── go.mod │ ├── go.sum │ └── your_program.sh ├── haskell │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ ├── .gitattributes │ ├── .gitignore │ ├── README.md │ ├── app │ │ └── Main.hs │ ├── codecrafters.yml │ ├── package.yaml │ ├── stack.yaml │ ├── stack.yaml.lock │ └── your_program.sh ├── java │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ ├── .gitattributes │ ├── .gitignore │ ├── README.md │ ├── codecrafters.yml │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── java │ │ │ └── Main.java │ └── your_program.sh ├── javascript │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ ├── .gitattributes │ ├── .gitignore │ ├── README.md │ ├── app │ │ └── main.js │ ├── codecrafters.yml │ ├── package-lock.json │ ├── package.json │ └── your_program.sh ├── kotlin │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ ├── .gitattributes │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── App.kt │ ├── codecrafters.yml │ ├── gradle.properties │ ├── gradle │ │ └── libs.versions.toml │ ├── pom.xml │ ├── settings.gradle.kts │ └── your_program.sh ├── odin │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ ├── .gitattributes │ ├── .gitignore │ ├── README.md │ ├── codecrafters.yml │ ├── src │ │ └── main.odin │ └── your_program.sh ├── php │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ ├── .gitattributes │ ├── README.md │ ├── app │ │ └── main.php │ ├── codecrafters.yml │ └── your_program.sh ├── python │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ ├── .gitattributes │ ├── .gitignore │ ├── .python-version │ ├── README.md │ ├── app │ │ └── main.py │ ├── codecrafters.yml │ ├── pyproject.toml │ ├── uv.lock │ └── your_program.sh ├── ruby │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ ├── .gitattributes │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ ├── app │ │ └── main.rb │ ├── codecrafters.yml │ └── your_program.sh ├── rust │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ ├── .gitattributes │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── codecrafters.yml │ ├── src │ │ └── main.rs │ └── your_program.sh ├── typescript │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ ├── .gitattributes │ ├── .gitignore │ ├── README.md │ ├── app │ │ └── main.ts │ ├── bun.lockb │ ├── codecrafters.yml │ ├── package.json │ ├── tsconfig.json │ └── your_program.sh └── zig │ ├── .codecrafters │ ├── compile.sh │ └── run.sh │ ├── .gitattributes │ ├── .gitignore │ ├── README.md │ ├── build.zig │ ├── build.zig.zon │ ├── codecrafters.yml │ ├── src │ └── main.zig │ └── your_program.sh ├── course-definition.yml ├── dockerfiles ├── bun-1.1.Dockerfile ├── bun-1.2.Dockerfile ├── c-23.Dockerfile ├── cpp-20.Dockerfile ├── cpp-23.Dockerfile ├── dotnet-8.0.Dockerfile ├── dotnet-9.0.Dockerfile ├── gleam-1.0.Dockerfile ├── gleam-1.11.Dockerfile ├── gleam-1.4.Dockerfile ├── gleam-1.6.Dockerfile ├── gleam-1.9.Dockerfile ├── go-1.19.Dockerfile ├── go-1.21.Dockerfile ├── go-1.22.Dockerfile ├── go-1.24.Dockerfile ├── go-1.25.Dockerfile ├── haskell-9.2.Dockerfile ├── haskell-9.8.Dockerfile ├── java-23.Dockerfile ├── java-24.Dockerfile ├── java-25.Dockerfile ├── kotlin-2.0.Dockerfile ├── kotlin-2.2.Dockerfile ├── nodejs-18.Dockerfile ├── nodejs-21.Dockerfile ├── odin-2025.6.Dockerfile ├── odin-2025.7.Dockerfile ├── php-8.4.Dockerfile ├── php-8.5.Dockerfile ├── python-3.10.Dockerfile ├── python-3.11.Dockerfile ├── python-3.12.Dockerfile ├── python-3.13.Dockerfile ├── python-3.14.Dockerfile ├── ruby-2.7.Dockerfile ├── ruby-3.2.Dockerfile ├── ruby-3.3.Dockerfile ├── ruby-3.4.Dockerfile ├── rust-1.62.Dockerfile ├── rust-1.68.Dockerfile ├── rust-1.70.Dockerfile ├── rust-1.76.Dockerfile ├── rust-1.77.Dockerfile ├── rust-1.80.Dockerfile ├── rust-1.82.Dockerfile ├── rust-1.85.Dockerfile ├── rust-1.86.Dockerfile ├── rust-1.87.Dockerfile ├── rust-1.88.Dockerfile ├── rust-1.91.Dockerfile ├── zig-0.14.Dockerfile ├── zig-0.15.2.Dockerfile └── zig-0.15.Dockerfile ├── solutions ├── c │ └── 01-cq2 │ │ ├── code │ │ ├── .codecrafters │ │ │ ├── compile.sh │ │ │ └── run.sh │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── codecrafters.yml │ │ ├── src │ │ │ └── main.c │ │ ├── vcpkg-configuration.json │ │ ├── vcpkg.json │ │ └── your_program.sh │ │ └── diff │ │ └── src │ │ └── main.c.diff ├── cpp │ └── 01-cq2 │ │ ├── code │ │ ├── .codecrafters │ │ │ ├── compile.sh │ │ │ └── run.sh │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── codecrafters.yml │ │ ├── src │ │ │ └── main.cpp │ │ ├── vcpkg-configuration.json │ │ ├── vcpkg.json │ │ └── your_program.sh │ │ └── diff │ │ └── src │ │ └── main.cpp.diff ├── csharp │ └── 01-cq2 │ │ ├── code │ │ ├── .codecrafters │ │ │ ├── compile.sh │ │ │ └── run.sh │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── README.md │ │ ├── codecrafters-grep.csproj │ │ ├── codecrafters-grep.sln │ │ ├── codecrafters.yml │ │ ├── src │ │ │ └── Program.cs │ │ └── your_program.sh │ │ └── diff │ │ └── src │ │ └── Program.cs.diff ├── gleam │ └── 01-cq2 │ │ ├── code │ │ ├── .codecrafters │ │ │ ├── compile.sh │ │ │ └── run.sh │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── README.md │ │ ├── codecrafters.yml │ │ ├── gleam.toml │ │ ├── manifest.toml │ │ ├── src │ │ │ └── main.gleam │ │ └── your_program.sh │ │ └── diff │ │ └── src │ │ └── main.gleam.diff ├── go │ └── 01-cq2 │ │ ├── code │ │ ├── .codecrafters │ │ │ ├── compile.sh │ │ │ └── run.sh │ │ ├── .gitattributes │ │ ├── README.md │ │ ├── app │ │ │ └── main.go │ │ ├── codecrafters.yml │ │ ├── go.mod │ │ ├── go.sum │ │ └── your_program.sh │ │ └── diff │ │ └── app │ │ └── main.go.diff ├── haskell │ └── 01-cq2 │ │ ├── code │ │ ├── .codecrafters │ │ │ ├── compile.sh │ │ │ └── run.sh │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── README.md │ │ ├── app │ │ │ └── Main.hs │ │ ├── codecrafters.yml │ │ ├── package.yaml │ │ ├── stack.yaml │ │ ├── stack.yaml.lock │ │ └── your_program.sh │ │ └── diff │ │ └── app │ │ └── Main.hs.diff ├── java │ └── 01-cq2 │ │ ├── code │ │ ├── .codecrafters │ │ │ ├── compile.sh │ │ │ └── run.sh │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── README.md │ │ ├── codecrafters.yml │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── Main.java │ │ └── your_program.sh │ │ └── diff │ │ └── src │ │ └── main │ │ └── java │ │ └── Main.java.diff ├── javascript │ └── 01-cq2 │ │ ├── code │ │ ├── .codecrafters │ │ │ ├── compile.sh │ │ │ └── run.sh │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── README.md │ │ ├── app │ │ │ └── main.js │ │ ├── codecrafters.yml │ │ ├── package-lock.json │ │ ├── package.json │ │ └── your_program.sh │ │ └── diff │ │ └── app │ │ └── main.js.diff ├── kotlin │ └── 01-cq2 │ │ ├── code │ │ ├── .codecrafters │ │ │ ├── compile.sh │ │ │ └── run.sh │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── README.md │ │ ├── app │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── kotlin │ │ │ │ └── App.kt │ │ ├── codecrafters.yml │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── libs.versions.toml │ │ ├── pom.xml │ │ ├── settings.gradle.kts │ │ └── your_program.sh │ │ └── diff │ │ └── app │ │ └── src │ │ └── main │ │ └── kotlin │ │ └── App.kt.diff ├── odin │ └── 01-cq2 │ │ ├── code │ │ ├── .codecrafters │ │ │ ├── compile.sh │ │ │ └── run.sh │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── README.md │ │ ├── codecrafters.yml │ │ ├── src │ │ │ └── main.odin │ │ └── your_program.sh │ │ └── diff │ │ └── src │ │ └── main.odin.diff ├── php │ └── 01-cq2 │ │ ├── code │ │ ├── .codecrafters │ │ │ ├── compile.sh │ │ │ └── run.sh │ │ ├── .gitattributes │ │ ├── README.md │ │ ├── app │ │ │ └── main.php │ │ ├── codecrafters.yml │ │ └── your_program.sh │ │ └── diff │ │ └── app │ │ └── main.php.diff ├── python │ └── 01-cq2 │ │ ├── code │ │ ├── .codecrafters │ │ │ ├── compile.sh │ │ │ └── run.sh │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .python-version │ │ ├── README.md │ │ ├── app │ │ │ └── main.py │ │ ├── codecrafters.yml │ │ ├── pyproject.toml │ │ ├── uv.lock │ │ └── your_program.sh │ │ └── diff │ │ └── app │ │ └── main.py.diff ├── ruby │ └── 01-cq2 │ │ ├── code │ │ ├── .codecrafters │ │ │ ├── compile.sh │ │ │ └── run.sh │ │ ├── .gitattributes │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── README.md │ │ ├── app │ │ │ └── main.rb │ │ ├── codecrafters.yml │ │ └── your_program.sh │ │ └── diff │ │ └── app │ │ └── main.rb.diff ├── rust │ └── 01-cq2 │ │ ├── code │ │ ├── .codecrafters │ │ │ ├── compile.sh │ │ │ └── run.sh │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── codecrafters.yml │ │ ├── src │ │ │ └── main.rs │ │ └── your_program.sh │ │ └── diff │ │ └── src │ │ └── main.rs.diff ├── typescript │ └── 01-cq2 │ │ ├── code │ │ ├── .codecrafters │ │ │ ├── compile.sh │ │ │ └── run.sh │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── README.md │ │ ├── app │ │ │ └── main.ts │ │ ├── bun.lockb │ │ ├── codecrafters.yml │ │ ├── package.json │ │ ├── tsconfig.json │ │ └── your_program.sh │ │ └── diff │ │ └── app │ │ └── main.ts.diff └── zig │ └── 01-cq2 │ ├── code │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ ├── .gitattributes │ ├── .gitignore │ ├── README.md │ ├── build.zig │ ├── build.zig.zon │ ├── codecrafters.yml │ ├── src │ │ └── main.zig │ └── your_program.sh │ └── diff │ └── src │ └── main.zig.diff ├── stage_descriptions ├── backreferences-01-sb5.md ├── backreferences-02-tg1.md ├── backreferences-03-xe5.md ├── base-01-cq2.md ├── base-02-oq2.md ├── base-03-mr9.md ├── base-04-tl6.md ├── base-05-rk3.md ├── base-06-sh9.md ├── base-07-rr8.md ├── base-08-ao7.md ├── base-09-fz7.md ├── base-10-ny8.md ├── base-11-zb3.md ├── base-12-zm7.md ├── filesearch-01-dr5.md ├── filesearch-02-ol9.md ├── filesearch-03-is6.md ├── filesearch-04-yx6.md ├── multiple-matches-01-cj0.md ├── multiple-matches-02-ss2.md ├── multiple-matches-03-bo4.md ├── printing-matches-01-ku5.md ├── printing-matches-02-pz6.md ├── quantifiers-01-ai9.md ├── quantifiers-02-wy9.md ├── quantifiers-03-hk3.md └── quantifiers-04-ug0.md └── starter_templates ├── all └── code │ ├── .gitattributes │ ├── README.md │ └── codecrafters.yml ├── c ├── code │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ ├── .gitignore │ ├── CMakeLists.txt │ ├── src │ │ └── main.c │ ├── vcpkg-configuration.json │ └── vcpkg.json └── config.yml ├── cpp ├── code │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ ├── .gitignore │ ├── CMakeLists.txt │ ├── src │ │ └── main.cpp │ ├── vcpkg-configuration.json │ └── vcpkg.json └── config.yml ├── csharp ├── code │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ ├── .gitignore │ ├── codecrafters-grep.csproj │ ├── codecrafters-grep.sln │ └── src │ │ └── Program.cs └── config.yml ├── gleam ├── code │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ ├── .gitignore │ ├── gleam.toml │ ├── manifest.toml │ └── src │ │ └── main.gleam └── config.yml ├── go ├── code │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ ├── app │ │ └── main.go │ ├── go.mod │ └── go.sum └── config.yml ├── haskell ├── code │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ ├── .gitignore │ ├── app │ │ └── Main.hs │ ├── package.yaml │ ├── stack.yaml │ └── stack.yaml.lock └── config.yml ├── java ├── code │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── Main.java └── config.yml ├── javascript ├── code │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ ├── .gitignore │ ├── app │ │ └── main.js │ ├── package-lock.json │ └── package.json └── config.yml ├── kotlin ├── code │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ ├── .gitignore │ ├── app │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── App.kt │ ├── gradle.properties │ ├── gradle │ │ └── libs.versions.toml │ ├── pom.xml │ └── settings.gradle.kts └── config.yml ├── odin ├── code │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ ├── .gitignore │ └── src │ │ └── main.odin └── config.yml ├── php ├── code │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ └── app │ │ └── main.php └── config.yml ├── python ├── code │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ ├── .gitignore │ ├── .python-version │ ├── app │ │ └── main.py │ ├── pyproject.toml │ └── uv.lock └── config.yml ├── ruby ├── code │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ ├── Gemfile │ ├── Gemfile.lock │ └── app │ │ └── main.rb └── config.yml ├── rust ├── code │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── main.rs └── config.yml ├── typescript ├── code │ ├── .codecrafters │ │ ├── compile.sh │ │ └── run.sh │ ├── .gitignore │ ├── app │ │ └── main.ts │ ├── bun.lockb │ ├── package.json │ └── tsconfig.json └── config.yml └── zig ├── code ├── .codecrafters │ ├── compile.sh │ └── run.sh ├── .gitignore ├── build.zig ├── build.zig.zon └── src │ └── main.zig └── config.yml /.github/workflows/post-diffs-in-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/.github/workflows/post-diffs-in-pr.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | course-definition-tester 2 | .history/ 3 | 4 | # MacOS 5 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/README.md -------------------------------------------------------------------------------- /compiled_starters/c/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/c/.codecrafters/compile.sh -------------------------------------------------------------------------------- /compiled_starters/c/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/c/.codecrafters/run.sh -------------------------------------------------------------------------------- /compiled_starters/c/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /compiled_starters/c/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/c/.gitignore -------------------------------------------------------------------------------- /compiled_starters/c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/c/CMakeLists.txt -------------------------------------------------------------------------------- /compiled_starters/c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/c/README.md -------------------------------------------------------------------------------- /compiled_starters/c/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/c/codecrafters.yml -------------------------------------------------------------------------------- /compiled_starters/c/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/c/src/main.c -------------------------------------------------------------------------------- /compiled_starters/c/vcpkg-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/c/vcpkg-configuration.json -------------------------------------------------------------------------------- /compiled_starters/c/vcpkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": [] 3 | } -------------------------------------------------------------------------------- /compiled_starters/c/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/c/your_program.sh -------------------------------------------------------------------------------- /compiled_starters/cpp/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/cpp/.codecrafters/compile.sh -------------------------------------------------------------------------------- /compiled_starters/cpp/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/cpp/.codecrafters/run.sh -------------------------------------------------------------------------------- /compiled_starters/cpp/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /compiled_starters/cpp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/cpp/.gitignore -------------------------------------------------------------------------------- /compiled_starters/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /compiled_starters/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/cpp/README.md -------------------------------------------------------------------------------- /compiled_starters/cpp/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/cpp/codecrafters.yml -------------------------------------------------------------------------------- /compiled_starters/cpp/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/cpp/src/main.cpp -------------------------------------------------------------------------------- /compiled_starters/cpp/vcpkg-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/cpp/vcpkg-configuration.json -------------------------------------------------------------------------------- /compiled_starters/cpp/vcpkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": [] 3 | } -------------------------------------------------------------------------------- /compiled_starters/cpp/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/cpp/your_program.sh -------------------------------------------------------------------------------- /compiled_starters/csharp/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/csharp/.codecrafters/compile.sh -------------------------------------------------------------------------------- /compiled_starters/csharp/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/csharp/.codecrafters/run.sh -------------------------------------------------------------------------------- /compiled_starters/csharp/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /compiled_starters/csharp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/csharp/.gitignore -------------------------------------------------------------------------------- /compiled_starters/csharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/csharp/README.md -------------------------------------------------------------------------------- /compiled_starters/csharp/codecrafters-grep.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/csharp/codecrafters-grep.csproj -------------------------------------------------------------------------------- /compiled_starters/csharp/codecrafters-grep.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/csharp/codecrafters-grep.sln -------------------------------------------------------------------------------- /compiled_starters/csharp/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/csharp/codecrafters.yml -------------------------------------------------------------------------------- /compiled_starters/csharp/src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/csharp/src/Program.cs -------------------------------------------------------------------------------- /compiled_starters/csharp/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/csharp/your_program.sh -------------------------------------------------------------------------------- /compiled_starters/gleam/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/gleam/.codecrafters/compile.sh -------------------------------------------------------------------------------- /compiled_starters/gleam/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/gleam/.codecrafters/run.sh -------------------------------------------------------------------------------- /compiled_starters/gleam/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /compiled_starters/gleam/.gitignore: -------------------------------------------------------------------------------- 1 | *.beam 2 | *.ez 3 | /build 4 | erl_crash.dump 5 | -------------------------------------------------------------------------------- /compiled_starters/gleam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/gleam/README.md -------------------------------------------------------------------------------- /compiled_starters/gleam/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/gleam/codecrafters.yml -------------------------------------------------------------------------------- /compiled_starters/gleam/gleam.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/gleam/gleam.toml -------------------------------------------------------------------------------- /compiled_starters/gleam/manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/gleam/manifest.toml -------------------------------------------------------------------------------- /compiled_starters/gleam/src/main.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/gleam/src/main.gleam -------------------------------------------------------------------------------- /compiled_starters/gleam/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/gleam/your_program.sh -------------------------------------------------------------------------------- /compiled_starters/go/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/go/.codecrafters/compile.sh -------------------------------------------------------------------------------- /compiled_starters/go/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/go/.codecrafters/run.sh -------------------------------------------------------------------------------- /compiled_starters/go/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /compiled_starters/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/go/README.md -------------------------------------------------------------------------------- /compiled_starters/go/app/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/go/app/main.go -------------------------------------------------------------------------------- /compiled_starters/go/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/go/codecrafters.yml -------------------------------------------------------------------------------- /compiled_starters/go/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/codecrafters-io/grep-starter-go 2 | 3 | go 1.25.0 4 | -------------------------------------------------------------------------------- /compiled_starters/go/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compiled_starters/go/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/go/your_program.sh -------------------------------------------------------------------------------- /compiled_starters/haskell/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/haskell/.codecrafters/compile.sh -------------------------------------------------------------------------------- /compiled_starters/haskell/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/haskell/.codecrafters/run.sh -------------------------------------------------------------------------------- /compiled_starters/haskell/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /compiled_starters/haskell/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/haskell/.gitignore -------------------------------------------------------------------------------- /compiled_starters/haskell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/haskell/README.md -------------------------------------------------------------------------------- /compiled_starters/haskell/app/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/haskell/app/Main.hs -------------------------------------------------------------------------------- /compiled_starters/haskell/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/haskell/codecrafters.yml -------------------------------------------------------------------------------- /compiled_starters/haskell/package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/haskell/package.yaml -------------------------------------------------------------------------------- /compiled_starters/haskell/stack.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-23.18 2 | 3 | packages: 4 | - . 5 | -------------------------------------------------------------------------------- /compiled_starters/haskell/stack.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/haskell/stack.yaml.lock -------------------------------------------------------------------------------- /compiled_starters/haskell/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/haskell/your_program.sh -------------------------------------------------------------------------------- /compiled_starters/java/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/java/.codecrafters/compile.sh -------------------------------------------------------------------------------- /compiled_starters/java/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/java/.codecrafters/run.sh -------------------------------------------------------------------------------- /compiled_starters/java/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /compiled_starters/java/.gitignore: -------------------------------------------------------------------------------- 1 | *.jar 2 | target/ 3 | .idea/ 4 | -------------------------------------------------------------------------------- /compiled_starters/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/java/README.md -------------------------------------------------------------------------------- /compiled_starters/java/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/java/codecrafters.yml -------------------------------------------------------------------------------- /compiled_starters/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/java/pom.xml -------------------------------------------------------------------------------- /compiled_starters/java/src/main/java/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/java/src/main/java/Main.java -------------------------------------------------------------------------------- /compiled_starters/java/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/java/your_program.sh -------------------------------------------------------------------------------- /compiled_starters/javascript/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/javascript/.codecrafters/compile.sh -------------------------------------------------------------------------------- /compiled_starters/javascript/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/javascript/.codecrafters/run.sh -------------------------------------------------------------------------------- /compiled_starters/javascript/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /compiled_starters/javascript/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /compiled_starters/javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/javascript/README.md -------------------------------------------------------------------------------- /compiled_starters/javascript/app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/javascript/app/main.js -------------------------------------------------------------------------------- /compiled_starters/javascript/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/javascript/codecrafters.yml -------------------------------------------------------------------------------- /compiled_starters/javascript/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/javascript/package-lock.json -------------------------------------------------------------------------------- /compiled_starters/javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/javascript/package.json -------------------------------------------------------------------------------- /compiled_starters/javascript/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/javascript/your_program.sh -------------------------------------------------------------------------------- /compiled_starters/kotlin/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/kotlin/.codecrafters/compile.sh -------------------------------------------------------------------------------- /compiled_starters/kotlin/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/kotlin/.codecrafters/run.sh -------------------------------------------------------------------------------- /compiled_starters/kotlin/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /compiled_starters/kotlin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/kotlin/.gitignore -------------------------------------------------------------------------------- /compiled_starters/kotlin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/kotlin/README.md -------------------------------------------------------------------------------- /compiled_starters/kotlin/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/kotlin/app/build.gradle.kts -------------------------------------------------------------------------------- /compiled_starters/kotlin/app/src/main/kotlin/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/kotlin/app/src/main/kotlin/App.kt -------------------------------------------------------------------------------- /compiled_starters/kotlin/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/kotlin/codecrafters.yml -------------------------------------------------------------------------------- /compiled_starters/kotlin/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/kotlin/gradle.properties -------------------------------------------------------------------------------- /compiled_starters/kotlin/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/kotlin/gradle/libs.versions.toml -------------------------------------------------------------------------------- /compiled_starters/kotlin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/kotlin/pom.xml -------------------------------------------------------------------------------- /compiled_starters/kotlin/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/kotlin/settings.gradle.kts -------------------------------------------------------------------------------- /compiled_starters/kotlin/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/kotlin/your_program.sh -------------------------------------------------------------------------------- /compiled_starters/odin/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/odin/.codecrafters/compile.sh -------------------------------------------------------------------------------- /compiled_starters/odin/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/odin/.codecrafters/run.sh -------------------------------------------------------------------------------- /compiled_starters/odin/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /compiled_starters/odin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/odin/.gitignore -------------------------------------------------------------------------------- /compiled_starters/odin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/odin/README.md -------------------------------------------------------------------------------- /compiled_starters/odin/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/odin/codecrafters.yml -------------------------------------------------------------------------------- /compiled_starters/odin/src/main.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/odin/src/main.odin -------------------------------------------------------------------------------- /compiled_starters/odin/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/odin/your_program.sh -------------------------------------------------------------------------------- /compiled_starters/php/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/php/.codecrafters/compile.sh -------------------------------------------------------------------------------- /compiled_starters/php/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/php/.codecrafters/run.sh -------------------------------------------------------------------------------- /compiled_starters/php/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /compiled_starters/php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/php/README.md -------------------------------------------------------------------------------- /compiled_starters/php/app/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/php/app/main.php -------------------------------------------------------------------------------- /compiled_starters/php/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/php/codecrafters.yml -------------------------------------------------------------------------------- /compiled_starters/php/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/php/your_program.sh -------------------------------------------------------------------------------- /compiled_starters/python/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/python/.codecrafters/compile.sh -------------------------------------------------------------------------------- /compiled_starters/python/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/python/.codecrafters/run.sh -------------------------------------------------------------------------------- /compiled_starters/python/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /compiled_starters/python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/python/.gitignore -------------------------------------------------------------------------------- /compiled_starters/python/.python-version: -------------------------------------------------------------------------------- 1 | 3.14 2 | -------------------------------------------------------------------------------- /compiled_starters/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/python/README.md -------------------------------------------------------------------------------- /compiled_starters/python/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/python/app/main.py -------------------------------------------------------------------------------- /compiled_starters/python/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/python/codecrafters.yml -------------------------------------------------------------------------------- /compiled_starters/python/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/python/pyproject.toml -------------------------------------------------------------------------------- /compiled_starters/python/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/python/uv.lock -------------------------------------------------------------------------------- /compiled_starters/python/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/python/your_program.sh -------------------------------------------------------------------------------- /compiled_starters/ruby/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/ruby/.codecrafters/compile.sh -------------------------------------------------------------------------------- /compiled_starters/ruby/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/ruby/.codecrafters/run.sh -------------------------------------------------------------------------------- /compiled_starters/ruby/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /compiled_starters/ruby/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/ruby/Gemfile -------------------------------------------------------------------------------- /compiled_starters/ruby/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/ruby/Gemfile.lock -------------------------------------------------------------------------------- /compiled_starters/ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/ruby/README.md -------------------------------------------------------------------------------- /compiled_starters/ruby/app/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/ruby/app/main.rb -------------------------------------------------------------------------------- /compiled_starters/ruby/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/ruby/codecrafters.yml -------------------------------------------------------------------------------- /compiled_starters/ruby/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/ruby/your_program.sh -------------------------------------------------------------------------------- /compiled_starters/rust/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/rust/.codecrafters/compile.sh -------------------------------------------------------------------------------- /compiled_starters/rust/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/rust/.codecrafters/run.sh -------------------------------------------------------------------------------- /compiled_starters/rust/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /compiled_starters/rust/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/rust/.gitignore -------------------------------------------------------------------------------- /compiled_starters/rust/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/rust/Cargo.lock -------------------------------------------------------------------------------- /compiled_starters/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/rust/Cargo.toml -------------------------------------------------------------------------------- /compiled_starters/rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/rust/README.md -------------------------------------------------------------------------------- /compiled_starters/rust/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/rust/codecrafters.yml -------------------------------------------------------------------------------- /compiled_starters/rust/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/rust/src/main.rs -------------------------------------------------------------------------------- /compiled_starters/rust/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/rust/your_program.sh -------------------------------------------------------------------------------- /compiled_starters/typescript/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/typescript/.codecrafters/compile.sh -------------------------------------------------------------------------------- /compiled_starters/typescript/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/typescript/.codecrafters/run.sh -------------------------------------------------------------------------------- /compiled_starters/typescript/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /compiled_starters/typescript/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /compiled_starters/typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/typescript/README.md -------------------------------------------------------------------------------- /compiled_starters/typescript/app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/typescript/app/main.ts -------------------------------------------------------------------------------- /compiled_starters/typescript/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/typescript/bun.lockb -------------------------------------------------------------------------------- /compiled_starters/typescript/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/typescript/codecrafters.yml -------------------------------------------------------------------------------- /compiled_starters/typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/typescript/package.json -------------------------------------------------------------------------------- /compiled_starters/typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/typescript/tsconfig.json -------------------------------------------------------------------------------- /compiled_starters/typescript/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/typescript/your_program.sh -------------------------------------------------------------------------------- /compiled_starters/zig/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/zig/.codecrafters/compile.sh -------------------------------------------------------------------------------- /compiled_starters/zig/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/zig/.codecrafters/run.sh -------------------------------------------------------------------------------- /compiled_starters/zig/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /compiled_starters/zig/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/zig/.gitignore -------------------------------------------------------------------------------- /compiled_starters/zig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/zig/README.md -------------------------------------------------------------------------------- /compiled_starters/zig/build.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/zig/build.zig -------------------------------------------------------------------------------- /compiled_starters/zig/build.zig.zon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/zig/build.zig.zon -------------------------------------------------------------------------------- /compiled_starters/zig/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/zig/codecrafters.yml -------------------------------------------------------------------------------- /compiled_starters/zig/src/main.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/zig/src/main.zig -------------------------------------------------------------------------------- /compiled_starters/zig/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/compiled_starters/zig/your_program.sh -------------------------------------------------------------------------------- /course-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/course-definition.yml -------------------------------------------------------------------------------- /dockerfiles/bun-1.1.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/bun-1.1.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/bun-1.2.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/bun-1.2.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/c-23.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/c-23.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/cpp-20.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/cpp-20.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/cpp-23.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/cpp-23.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/dotnet-8.0.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/dotnet-8.0.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/dotnet-9.0.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/dotnet-9.0.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/gleam-1.0.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/gleam-1.0.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/gleam-1.11.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/gleam-1.11.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/gleam-1.4.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/gleam-1.4.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/gleam-1.6.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/gleam-1.6.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/gleam-1.9.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/gleam-1.9.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/go-1.19.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/go-1.19.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/go-1.21.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/go-1.21.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/go-1.22.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/go-1.22.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/go-1.24.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/go-1.24.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/go-1.25.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/go-1.25.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/haskell-9.2.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/haskell-9.2.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/haskell-9.8.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/haskell-9.8.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/java-23.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/java-23.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/java-24.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/java-24.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/java-25.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/java-25.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/kotlin-2.0.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/kotlin-2.0.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/kotlin-2.2.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/kotlin-2.2.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/nodejs-18.Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:18.18.0-alpine3.17 -------------------------------------------------------------------------------- /dockerfiles/nodejs-21.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/nodejs-21.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/odin-2025.6.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/odin-2025.6.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/odin-2025.7.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/odin-2025.7.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/php-8.4.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/php-8.4.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/php-8.5.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/php-8.5.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/python-3.10.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/python-3.10.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/python-3.11.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/python-3.11.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/python-3.12.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/python-3.12.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/python-3.13.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/python-3.13.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/python-3.14.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/python-3.14.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/ruby-2.7.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/ruby-2.7.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/ruby-3.2.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/ruby-3.2.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/ruby-3.3.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/ruby-3.3.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/ruby-3.4.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/ruby-3.4.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/rust-1.62.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/rust-1.62.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/rust-1.68.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/rust-1.68.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/rust-1.70.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/rust-1.70.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/rust-1.76.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/rust-1.76.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/rust-1.77.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/rust-1.77.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/rust-1.80.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/rust-1.80.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/rust-1.82.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/rust-1.82.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/rust-1.85.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/rust-1.85.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/rust-1.86.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/rust-1.86.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/rust-1.87.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/rust-1.87.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/rust-1.88.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/rust-1.88.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/rust-1.91.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/rust-1.91.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/zig-0.14.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/zig-0.14.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/zig-0.15.2.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/zig-0.15.2.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/zig-0.15.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/dockerfiles/zig-0.15.Dockerfile -------------------------------------------------------------------------------- /solutions/c/01-cq2/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/c/01-cq2/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /solutions/c/01-cq2/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/c/01-cq2/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /solutions/c/01-cq2/code/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /solutions/c/01-cq2/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/c/01-cq2/code/.gitignore -------------------------------------------------------------------------------- /solutions/c/01-cq2/code/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/c/01-cq2/code/CMakeLists.txt -------------------------------------------------------------------------------- /solutions/c/01-cq2/code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/c/01-cq2/code/README.md -------------------------------------------------------------------------------- /solutions/c/01-cq2/code/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/c/01-cq2/code/codecrafters.yml -------------------------------------------------------------------------------- /solutions/c/01-cq2/code/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/c/01-cq2/code/src/main.c -------------------------------------------------------------------------------- /solutions/c/01-cq2/code/vcpkg-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/c/01-cq2/code/vcpkg-configuration.json -------------------------------------------------------------------------------- /solutions/c/01-cq2/code/vcpkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": [] 3 | } -------------------------------------------------------------------------------- /solutions/c/01-cq2/code/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/c/01-cq2/code/your_program.sh -------------------------------------------------------------------------------- /solutions/c/01-cq2/diff/src/main.c.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/c/01-cq2/diff/src/main.c.diff -------------------------------------------------------------------------------- /solutions/cpp/01-cq2/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/cpp/01-cq2/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /solutions/cpp/01-cq2/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/cpp/01-cq2/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /solutions/cpp/01-cq2/code/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /solutions/cpp/01-cq2/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/cpp/01-cq2/code/.gitignore -------------------------------------------------------------------------------- /solutions/cpp/01-cq2/code/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/cpp/01-cq2/code/CMakeLists.txt -------------------------------------------------------------------------------- /solutions/cpp/01-cq2/code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/cpp/01-cq2/code/README.md -------------------------------------------------------------------------------- /solutions/cpp/01-cq2/code/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/cpp/01-cq2/code/codecrafters.yml -------------------------------------------------------------------------------- /solutions/cpp/01-cq2/code/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/cpp/01-cq2/code/src/main.cpp -------------------------------------------------------------------------------- /solutions/cpp/01-cq2/code/vcpkg-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/cpp/01-cq2/code/vcpkg-configuration.json -------------------------------------------------------------------------------- /solutions/cpp/01-cq2/code/vcpkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": [] 3 | } -------------------------------------------------------------------------------- /solutions/cpp/01-cq2/code/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/cpp/01-cq2/code/your_program.sh -------------------------------------------------------------------------------- /solutions/cpp/01-cq2/diff/src/main.cpp.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/cpp/01-cq2/diff/src/main.cpp.diff -------------------------------------------------------------------------------- /solutions/csharp/01-cq2/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/csharp/01-cq2/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /solutions/csharp/01-cq2/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/csharp/01-cq2/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /solutions/csharp/01-cq2/code/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /solutions/csharp/01-cq2/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/csharp/01-cq2/code/.gitignore -------------------------------------------------------------------------------- /solutions/csharp/01-cq2/code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/csharp/01-cq2/code/README.md -------------------------------------------------------------------------------- /solutions/csharp/01-cq2/code/codecrafters-grep.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/csharp/01-cq2/code/codecrafters-grep.csproj -------------------------------------------------------------------------------- /solutions/csharp/01-cq2/code/codecrafters-grep.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/csharp/01-cq2/code/codecrafters-grep.sln -------------------------------------------------------------------------------- /solutions/csharp/01-cq2/code/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/csharp/01-cq2/code/codecrafters.yml -------------------------------------------------------------------------------- /solutions/csharp/01-cq2/code/src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/csharp/01-cq2/code/src/Program.cs -------------------------------------------------------------------------------- /solutions/csharp/01-cq2/code/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/csharp/01-cq2/code/your_program.sh -------------------------------------------------------------------------------- /solutions/csharp/01-cq2/diff/src/Program.cs.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/csharp/01-cq2/diff/src/Program.cs.diff -------------------------------------------------------------------------------- /solutions/gleam/01-cq2/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/gleam/01-cq2/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /solutions/gleam/01-cq2/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/gleam/01-cq2/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /solutions/gleam/01-cq2/code/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /solutions/gleam/01-cq2/code/.gitignore: -------------------------------------------------------------------------------- 1 | *.beam 2 | *.ez 3 | /build 4 | erl_crash.dump 5 | -------------------------------------------------------------------------------- /solutions/gleam/01-cq2/code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/gleam/01-cq2/code/README.md -------------------------------------------------------------------------------- /solutions/gleam/01-cq2/code/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/gleam/01-cq2/code/codecrafters.yml -------------------------------------------------------------------------------- /solutions/gleam/01-cq2/code/gleam.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/gleam/01-cq2/code/gleam.toml -------------------------------------------------------------------------------- /solutions/gleam/01-cq2/code/manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/gleam/01-cq2/code/manifest.toml -------------------------------------------------------------------------------- /solutions/gleam/01-cq2/code/src/main.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/gleam/01-cq2/code/src/main.gleam -------------------------------------------------------------------------------- /solutions/gleam/01-cq2/code/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/gleam/01-cq2/code/your_program.sh -------------------------------------------------------------------------------- /solutions/gleam/01-cq2/diff/src/main.gleam.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/gleam/01-cq2/diff/src/main.gleam.diff -------------------------------------------------------------------------------- /solutions/go/01-cq2/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/go/01-cq2/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /solutions/go/01-cq2/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/go/01-cq2/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /solutions/go/01-cq2/code/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /solutions/go/01-cq2/code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/go/01-cq2/code/README.md -------------------------------------------------------------------------------- /solutions/go/01-cq2/code/app/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/go/01-cq2/code/app/main.go -------------------------------------------------------------------------------- /solutions/go/01-cq2/code/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/go/01-cq2/code/codecrafters.yml -------------------------------------------------------------------------------- /solutions/go/01-cq2/code/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/codecrafters-io/grep-starter-go 2 | 3 | go 1.25.0 4 | -------------------------------------------------------------------------------- /solutions/go/01-cq2/code/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solutions/go/01-cq2/code/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/go/01-cq2/code/your_program.sh -------------------------------------------------------------------------------- /solutions/go/01-cq2/diff/app/main.go.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/go/01-cq2/diff/app/main.go.diff -------------------------------------------------------------------------------- /solutions/haskell/01-cq2/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/haskell/01-cq2/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /solutions/haskell/01-cq2/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/haskell/01-cq2/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /solutions/haskell/01-cq2/code/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /solutions/haskell/01-cq2/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/haskell/01-cq2/code/.gitignore -------------------------------------------------------------------------------- /solutions/haskell/01-cq2/code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/haskell/01-cq2/code/README.md -------------------------------------------------------------------------------- /solutions/haskell/01-cq2/code/app/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/haskell/01-cq2/code/app/Main.hs -------------------------------------------------------------------------------- /solutions/haskell/01-cq2/code/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/haskell/01-cq2/code/codecrafters.yml -------------------------------------------------------------------------------- /solutions/haskell/01-cq2/code/package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/haskell/01-cq2/code/package.yaml -------------------------------------------------------------------------------- /solutions/haskell/01-cq2/code/stack.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-23.18 2 | 3 | packages: 4 | - . 5 | -------------------------------------------------------------------------------- /solutions/haskell/01-cq2/code/stack.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/haskell/01-cq2/code/stack.yaml.lock -------------------------------------------------------------------------------- /solutions/haskell/01-cq2/code/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/haskell/01-cq2/code/your_program.sh -------------------------------------------------------------------------------- /solutions/haskell/01-cq2/diff/app/Main.hs.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/haskell/01-cq2/diff/app/Main.hs.diff -------------------------------------------------------------------------------- /solutions/java/01-cq2/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/java/01-cq2/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /solutions/java/01-cq2/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/java/01-cq2/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /solutions/java/01-cq2/code/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /solutions/java/01-cq2/code/.gitignore: -------------------------------------------------------------------------------- 1 | *.jar 2 | target/ 3 | .idea/ 4 | -------------------------------------------------------------------------------- /solutions/java/01-cq2/code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/java/01-cq2/code/README.md -------------------------------------------------------------------------------- /solutions/java/01-cq2/code/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/java/01-cq2/code/codecrafters.yml -------------------------------------------------------------------------------- /solutions/java/01-cq2/code/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/java/01-cq2/code/pom.xml -------------------------------------------------------------------------------- /solutions/java/01-cq2/code/src/main/java/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/java/01-cq2/code/src/main/java/Main.java -------------------------------------------------------------------------------- /solutions/java/01-cq2/code/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/java/01-cq2/code/your_program.sh -------------------------------------------------------------------------------- /solutions/java/01-cq2/diff/src/main/java/Main.java.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/java/01-cq2/diff/src/main/java/Main.java.diff -------------------------------------------------------------------------------- /solutions/javascript/01-cq2/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/javascript/01-cq2/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /solutions/javascript/01-cq2/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/javascript/01-cq2/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /solutions/javascript/01-cq2/code/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /solutions/javascript/01-cq2/code/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /solutions/javascript/01-cq2/code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/javascript/01-cq2/code/README.md -------------------------------------------------------------------------------- /solutions/javascript/01-cq2/code/app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/javascript/01-cq2/code/app/main.js -------------------------------------------------------------------------------- /solutions/javascript/01-cq2/code/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/javascript/01-cq2/code/codecrafters.yml -------------------------------------------------------------------------------- /solutions/javascript/01-cq2/code/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/javascript/01-cq2/code/package-lock.json -------------------------------------------------------------------------------- /solutions/javascript/01-cq2/code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/javascript/01-cq2/code/package.json -------------------------------------------------------------------------------- /solutions/javascript/01-cq2/code/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/javascript/01-cq2/code/your_program.sh -------------------------------------------------------------------------------- /solutions/javascript/01-cq2/diff/app/main.js.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/javascript/01-cq2/diff/app/main.js.diff -------------------------------------------------------------------------------- /solutions/kotlin/01-cq2/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/kotlin/01-cq2/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /solutions/kotlin/01-cq2/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/kotlin/01-cq2/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /solutions/kotlin/01-cq2/code/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /solutions/kotlin/01-cq2/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/kotlin/01-cq2/code/.gitignore -------------------------------------------------------------------------------- /solutions/kotlin/01-cq2/code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/kotlin/01-cq2/code/README.md -------------------------------------------------------------------------------- /solutions/kotlin/01-cq2/code/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/kotlin/01-cq2/code/app/build.gradle.kts -------------------------------------------------------------------------------- /solutions/kotlin/01-cq2/code/app/src/main/kotlin/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/kotlin/01-cq2/code/app/src/main/kotlin/App.kt -------------------------------------------------------------------------------- /solutions/kotlin/01-cq2/code/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/kotlin/01-cq2/code/codecrafters.yml -------------------------------------------------------------------------------- /solutions/kotlin/01-cq2/code/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/kotlin/01-cq2/code/gradle.properties -------------------------------------------------------------------------------- /solutions/kotlin/01-cq2/code/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/kotlin/01-cq2/code/gradle/libs.versions.toml -------------------------------------------------------------------------------- /solutions/kotlin/01-cq2/code/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/kotlin/01-cq2/code/pom.xml -------------------------------------------------------------------------------- /solutions/kotlin/01-cq2/code/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/kotlin/01-cq2/code/settings.gradle.kts -------------------------------------------------------------------------------- /solutions/kotlin/01-cq2/code/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/kotlin/01-cq2/code/your_program.sh -------------------------------------------------------------------------------- /solutions/kotlin/01-cq2/diff/app/src/main/kotlin/App.kt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/kotlin/01-cq2/diff/app/src/main/kotlin/App.kt.diff -------------------------------------------------------------------------------- /solutions/odin/01-cq2/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/odin/01-cq2/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /solutions/odin/01-cq2/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/odin/01-cq2/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /solutions/odin/01-cq2/code/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /solutions/odin/01-cq2/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/odin/01-cq2/code/.gitignore -------------------------------------------------------------------------------- /solutions/odin/01-cq2/code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/odin/01-cq2/code/README.md -------------------------------------------------------------------------------- /solutions/odin/01-cq2/code/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/odin/01-cq2/code/codecrafters.yml -------------------------------------------------------------------------------- /solutions/odin/01-cq2/code/src/main.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/odin/01-cq2/code/src/main.odin -------------------------------------------------------------------------------- /solutions/odin/01-cq2/code/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/odin/01-cq2/code/your_program.sh -------------------------------------------------------------------------------- /solutions/odin/01-cq2/diff/src/main.odin.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/odin/01-cq2/diff/src/main.odin.diff -------------------------------------------------------------------------------- /solutions/php/01-cq2/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/php/01-cq2/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /solutions/php/01-cq2/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/php/01-cq2/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /solutions/php/01-cq2/code/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /solutions/php/01-cq2/code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/php/01-cq2/code/README.md -------------------------------------------------------------------------------- /solutions/php/01-cq2/code/app/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/php/01-cq2/code/app/main.php -------------------------------------------------------------------------------- /solutions/php/01-cq2/code/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/php/01-cq2/code/codecrafters.yml -------------------------------------------------------------------------------- /solutions/php/01-cq2/code/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/php/01-cq2/code/your_program.sh -------------------------------------------------------------------------------- /solutions/php/01-cq2/diff/app/main.php.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/php/01-cq2/diff/app/main.php.diff -------------------------------------------------------------------------------- /solutions/python/01-cq2/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/python/01-cq2/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /solutions/python/01-cq2/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/python/01-cq2/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /solutions/python/01-cq2/code/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /solutions/python/01-cq2/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/python/01-cq2/code/.gitignore -------------------------------------------------------------------------------- /solutions/python/01-cq2/code/.python-version: -------------------------------------------------------------------------------- 1 | 3.14 2 | -------------------------------------------------------------------------------- /solutions/python/01-cq2/code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/python/01-cq2/code/README.md -------------------------------------------------------------------------------- /solutions/python/01-cq2/code/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/python/01-cq2/code/app/main.py -------------------------------------------------------------------------------- /solutions/python/01-cq2/code/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/python/01-cq2/code/codecrafters.yml -------------------------------------------------------------------------------- /solutions/python/01-cq2/code/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/python/01-cq2/code/pyproject.toml -------------------------------------------------------------------------------- /solutions/python/01-cq2/code/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/python/01-cq2/code/uv.lock -------------------------------------------------------------------------------- /solutions/python/01-cq2/code/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/python/01-cq2/code/your_program.sh -------------------------------------------------------------------------------- /solutions/python/01-cq2/diff/app/main.py.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/python/01-cq2/diff/app/main.py.diff -------------------------------------------------------------------------------- /solutions/ruby/01-cq2/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/ruby/01-cq2/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /solutions/ruby/01-cq2/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/ruby/01-cq2/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /solutions/ruby/01-cq2/code/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /solutions/ruby/01-cq2/code/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/ruby/01-cq2/code/Gemfile -------------------------------------------------------------------------------- /solutions/ruby/01-cq2/code/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/ruby/01-cq2/code/Gemfile.lock -------------------------------------------------------------------------------- /solutions/ruby/01-cq2/code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/ruby/01-cq2/code/README.md -------------------------------------------------------------------------------- /solutions/ruby/01-cq2/code/app/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/ruby/01-cq2/code/app/main.rb -------------------------------------------------------------------------------- /solutions/ruby/01-cq2/code/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/ruby/01-cq2/code/codecrafters.yml -------------------------------------------------------------------------------- /solutions/ruby/01-cq2/code/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/ruby/01-cq2/code/your_program.sh -------------------------------------------------------------------------------- /solutions/ruby/01-cq2/diff/app/main.rb.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/ruby/01-cq2/diff/app/main.rb.diff -------------------------------------------------------------------------------- /solutions/rust/01-cq2/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/rust/01-cq2/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /solutions/rust/01-cq2/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/rust/01-cq2/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /solutions/rust/01-cq2/code/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /solutions/rust/01-cq2/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/rust/01-cq2/code/.gitignore -------------------------------------------------------------------------------- /solutions/rust/01-cq2/code/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/rust/01-cq2/code/Cargo.lock -------------------------------------------------------------------------------- /solutions/rust/01-cq2/code/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/rust/01-cq2/code/Cargo.toml -------------------------------------------------------------------------------- /solutions/rust/01-cq2/code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/rust/01-cq2/code/README.md -------------------------------------------------------------------------------- /solutions/rust/01-cq2/code/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/rust/01-cq2/code/codecrafters.yml -------------------------------------------------------------------------------- /solutions/rust/01-cq2/code/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/rust/01-cq2/code/src/main.rs -------------------------------------------------------------------------------- /solutions/rust/01-cq2/code/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/rust/01-cq2/code/your_program.sh -------------------------------------------------------------------------------- /solutions/rust/01-cq2/diff/src/main.rs.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/rust/01-cq2/diff/src/main.rs.diff -------------------------------------------------------------------------------- /solutions/typescript/01-cq2/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/typescript/01-cq2/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /solutions/typescript/01-cq2/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/typescript/01-cq2/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /solutions/typescript/01-cq2/code/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /solutions/typescript/01-cq2/code/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /solutions/typescript/01-cq2/code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/typescript/01-cq2/code/README.md -------------------------------------------------------------------------------- /solutions/typescript/01-cq2/code/app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/typescript/01-cq2/code/app/main.ts -------------------------------------------------------------------------------- /solutions/typescript/01-cq2/code/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/typescript/01-cq2/code/bun.lockb -------------------------------------------------------------------------------- /solutions/typescript/01-cq2/code/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/typescript/01-cq2/code/codecrafters.yml -------------------------------------------------------------------------------- /solutions/typescript/01-cq2/code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/typescript/01-cq2/code/package.json -------------------------------------------------------------------------------- /solutions/typescript/01-cq2/code/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/typescript/01-cq2/code/tsconfig.json -------------------------------------------------------------------------------- /solutions/typescript/01-cq2/code/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/typescript/01-cq2/code/your_program.sh -------------------------------------------------------------------------------- /solutions/typescript/01-cq2/diff/app/main.ts.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/typescript/01-cq2/diff/app/main.ts.diff -------------------------------------------------------------------------------- /solutions/zig/01-cq2/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/zig/01-cq2/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /solutions/zig/01-cq2/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/zig/01-cq2/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /solutions/zig/01-cq2/code/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /solutions/zig/01-cq2/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/zig/01-cq2/code/.gitignore -------------------------------------------------------------------------------- /solutions/zig/01-cq2/code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/zig/01-cq2/code/README.md -------------------------------------------------------------------------------- /solutions/zig/01-cq2/code/build.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/zig/01-cq2/code/build.zig -------------------------------------------------------------------------------- /solutions/zig/01-cq2/code/build.zig.zon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/zig/01-cq2/code/build.zig.zon -------------------------------------------------------------------------------- /solutions/zig/01-cq2/code/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/zig/01-cq2/code/codecrafters.yml -------------------------------------------------------------------------------- /solutions/zig/01-cq2/code/src/main.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/zig/01-cq2/code/src/main.zig -------------------------------------------------------------------------------- /solutions/zig/01-cq2/code/your_program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/zig/01-cq2/code/your_program.sh -------------------------------------------------------------------------------- /solutions/zig/01-cq2/diff/src/main.zig.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/solutions/zig/01-cq2/diff/src/main.zig.diff -------------------------------------------------------------------------------- /stage_descriptions/backreferences-01-sb5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/stage_descriptions/backreferences-01-sb5.md -------------------------------------------------------------------------------- /stage_descriptions/backreferences-02-tg1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/stage_descriptions/backreferences-02-tg1.md -------------------------------------------------------------------------------- /stage_descriptions/backreferences-03-xe5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/stage_descriptions/backreferences-03-xe5.md -------------------------------------------------------------------------------- /stage_descriptions/base-01-cq2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/stage_descriptions/base-01-cq2.md -------------------------------------------------------------------------------- /stage_descriptions/base-02-oq2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/stage_descriptions/base-02-oq2.md -------------------------------------------------------------------------------- /stage_descriptions/base-03-mr9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/stage_descriptions/base-03-mr9.md -------------------------------------------------------------------------------- /stage_descriptions/base-04-tl6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/stage_descriptions/base-04-tl6.md -------------------------------------------------------------------------------- /stage_descriptions/base-05-rk3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/stage_descriptions/base-05-rk3.md -------------------------------------------------------------------------------- /stage_descriptions/base-06-sh9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/stage_descriptions/base-06-sh9.md -------------------------------------------------------------------------------- /stage_descriptions/base-07-rr8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/stage_descriptions/base-07-rr8.md -------------------------------------------------------------------------------- /stage_descriptions/base-08-ao7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/stage_descriptions/base-08-ao7.md -------------------------------------------------------------------------------- /stage_descriptions/base-09-fz7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/stage_descriptions/base-09-fz7.md -------------------------------------------------------------------------------- /stage_descriptions/base-10-ny8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/stage_descriptions/base-10-ny8.md -------------------------------------------------------------------------------- /stage_descriptions/base-11-zb3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/stage_descriptions/base-11-zb3.md -------------------------------------------------------------------------------- /stage_descriptions/base-12-zm7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/stage_descriptions/base-12-zm7.md -------------------------------------------------------------------------------- /stage_descriptions/filesearch-01-dr5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/stage_descriptions/filesearch-01-dr5.md -------------------------------------------------------------------------------- /stage_descriptions/filesearch-02-ol9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/stage_descriptions/filesearch-02-ol9.md -------------------------------------------------------------------------------- /stage_descriptions/filesearch-03-is6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/stage_descriptions/filesearch-03-is6.md -------------------------------------------------------------------------------- /stage_descriptions/filesearch-04-yx6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/stage_descriptions/filesearch-04-yx6.md -------------------------------------------------------------------------------- /stage_descriptions/multiple-matches-01-cj0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/stage_descriptions/multiple-matches-01-cj0.md -------------------------------------------------------------------------------- /stage_descriptions/multiple-matches-02-ss2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/stage_descriptions/multiple-matches-02-ss2.md -------------------------------------------------------------------------------- /stage_descriptions/multiple-matches-03-bo4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/stage_descriptions/multiple-matches-03-bo4.md -------------------------------------------------------------------------------- /stage_descriptions/printing-matches-01-ku5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/stage_descriptions/printing-matches-01-ku5.md -------------------------------------------------------------------------------- /stage_descriptions/printing-matches-02-pz6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/stage_descriptions/printing-matches-02-pz6.md -------------------------------------------------------------------------------- /stage_descriptions/quantifiers-01-ai9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/stage_descriptions/quantifiers-01-ai9.md -------------------------------------------------------------------------------- /stage_descriptions/quantifiers-02-wy9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/stage_descriptions/quantifiers-02-wy9.md -------------------------------------------------------------------------------- /stage_descriptions/quantifiers-03-hk3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/stage_descriptions/quantifiers-03-hk3.md -------------------------------------------------------------------------------- /stage_descriptions/quantifiers-04-ug0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/stage_descriptions/quantifiers-04-ug0.md -------------------------------------------------------------------------------- /starter_templates/all/code/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /starter_templates/all/code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/all/code/README.md -------------------------------------------------------------------------------- /starter_templates/all/code/codecrafters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/all/code/codecrafters.yml -------------------------------------------------------------------------------- /starter_templates/c/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/c/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /starter_templates/c/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/c/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /starter_templates/c/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/c/code/.gitignore -------------------------------------------------------------------------------- /starter_templates/c/code/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/c/code/CMakeLists.txt -------------------------------------------------------------------------------- /starter_templates/c/code/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/c/code/src/main.c -------------------------------------------------------------------------------- /starter_templates/c/code/vcpkg-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/c/code/vcpkg-configuration.json -------------------------------------------------------------------------------- /starter_templates/c/code/vcpkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": [] 3 | } -------------------------------------------------------------------------------- /starter_templates/c/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/c/config.yml -------------------------------------------------------------------------------- /starter_templates/cpp/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/cpp/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /starter_templates/cpp/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/cpp/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /starter_templates/cpp/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/cpp/code/.gitignore -------------------------------------------------------------------------------- /starter_templates/cpp/code/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/cpp/code/CMakeLists.txt -------------------------------------------------------------------------------- /starter_templates/cpp/code/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/cpp/code/src/main.cpp -------------------------------------------------------------------------------- /starter_templates/cpp/code/vcpkg-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/cpp/code/vcpkg-configuration.json -------------------------------------------------------------------------------- /starter_templates/cpp/code/vcpkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": [] 3 | } -------------------------------------------------------------------------------- /starter_templates/cpp/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/cpp/config.yml -------------------------------------------------------------------------------- /starter_templates/csharp/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/csharp/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /starter_templates/csharp/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/csharp/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /starter_templates/csharp/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/csharp/code/.gitignore -------------------------------------------------------------------------------- /starter_templates/csharp/code/codecrafters-grep.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/csharp/code/codecrafters-grep.csproj -------------------------------------------------------------------------------- /starter_templates/csharp/code/codecrafters-grep.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/csharp/code/codecrafters-grep.sln -------------------------------------------------------------------------------- /starter_templates/csharp/code/src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/csharp/code/src/Program.cs -------------------------------------------------------------------------------- /starter_templates/csharp/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/csharp/config.yml -------------------------------------------------------------------------------- /starter_templates/gleam/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/gleam/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /starter_templates/gleam/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/gleam/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /starter_templates/gleam/code/.gitignore: -------------------------------------------------------------------------------- 1 | *.beam 2 | *.ez 3 | /build 4 | erl_crash.dump 5 | -------------------------------------------------------------------------------- /starter_templates/gleam/code/gleam.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/gleam/code/gleam.toml -------------------------------------------------------------------------------- /starter_templates/gleam/code/manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/gleam/code/manifest.toml -------------------------------------------------------------------------------- /starter_templates/gleam/code/src/main.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/gleam/code/src/main.gleam -------------------------------------------------------------------------------- /starter_templates/gleam/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/gleam/config.yml -------------------------------------------------------------------------------- /starter_templates/go/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/go/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /starter_templates/go/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/go/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /starter_templates/go/code/app/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/go/code/app/main.go -------------------------------------------------------------------------------- /starter_templates/go/code/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/codecrafters-io/grep-starter-go 2 | 3 | go 1.25.0 4 | -------------------------------------------------------------------------------- /starter_templates/go/code/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /starter_templates/go/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/go/config.yml -------------------------------------------------------------------------------- /starter_templates/haskell/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/haskell/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /starter_templates/haskell/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/haskell/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /starter_templates/haskell/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/haskell/code/.gitignore -------------------------------------------------------------------------------- /starter_templates/haskell/code/app/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/haskell/code/app/Main.hs -------------------------------------------------------------------------------- /starter_templates/haskell/code/package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/haskell/code/package.yaml -------------------------------------------------------------------------------- /starter_templates/haskell/code/stack.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-23.18 2 | 3 | packages: 4 | - . 5 | -------------------------------------------------------------------------------- /starter_templates/haskell/code/stack.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/haskell/code/stack.yaml.lock -------------------------------------------------------------------------------- /starter_templates/haskell/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/haskell/config.yml -------------------------------------------------------------------------------- /starter_templates/java/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/java/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /starter_templates/java/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/java/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /starter_templates/java/code/.gitignore: -------------------------------------------------------------------------------- 1 | *.jar 2 | target/ 3 | .idea/ 4 | -------------------------------------------------------------------------------- /starter_templates/java/code/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/java/code/pom.xml -------------------------------------------------------------------------------- /starter_templates/java/code/src/main/java/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/java/code/src/main/java/Main.java -------------------------------------------------------------------------------- /starter_templates/java/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/java/config.yml -------------------------------------------------------------------------------- /starter_templates/javascript/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/javascript/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /starter_templates/javascript/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/javascript/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /starter_templates/javascript/code/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /starter_templates/javascript/code/app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/javascript/code/app/main.js -------------------------------------------------------------------------------- /starter_templates/javascript/code/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/javascript/code/package-lock.json -------------------------------------------------------------------------------- /starter_templates/javascript/code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/javascript/code/package.json -------------------------------------------------------------------------------- /starter_templates/javascript/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/javascript/config.yml -------------------------------------------------------------------------------- /starter_templates/kotlin/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/kotlin/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /starter_templates/kotlin/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/kotlin/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /starter_templates/kotlin/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/kotlin/code/.gitignore -------------------------------------------------------------------------------- /starter_templates/kotlin/code/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/kotlin/code/app/build.gradle.kts -------------------------------------------------------------------------------- /starter_templates/kotlin/code/app/src/main/kotlin/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/kotlin/code/app/src/main/kotlin/App.kt -------------------------------------------------------------------------------- /starter_templates/kotlin/code/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/kotlin/code/gradle.properties -------------------------------------------------------------------------------- /starter_templates/kotlin/code/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/kotlin/code/gradle/libs.versions.toml -------------------------------------------------------------------------------- /starter_templates/kotlin/code/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/kotlin/code/pom.xml -------------------------------------------------------------------------------- /starter_templates/kotlin/code/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/kotlin/code/settings.gradle.kts -------------------------------------------------------------------------------- /starter_templates/kotlin/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/kotlin/config.yml -------------------------------------------------------------------------------- /starter_templates/odin/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/odin/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /starter_templates/odin/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/odin/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /starter_templates/odin/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/odin/code/.gitignore -------------------------------------------------------------------------------- /starter_templates/odin/code/src/main.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/odin/code/src/main.odin -------------------------------------------------------------------------------- /starter_templates/odin/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/odin/config.yml -------------------------------------------------------------------------------- /starter_templates/php/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/php/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /starter_templates/php/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/php/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /starter_templates/php/code/app/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/php/code/app/main.php -------------------------------------------------------------------------------- /starter_templates/php/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/php/config.yml -------------------------------------------------------------------------------- /starter_templates/python/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/python/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /starter_templates/python/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/python/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /starter_templates/python/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/python/code/.gitignore -------------------------------------------------------------------------------- /starter_templates/python/code/.python-version: -------------------------------------------------------------------------------- 1 | 3.14 2 | -------------------------------------------------------------------------------- /starter_templates/python/code/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/python/code/app/main.py -------------------------------------------------------------------------------- /starter_templates/python/code/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/python/code/pyproject.toml -------------------------------------------------------------------------------- /starter_templates/python/code/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/python/code/uv.lock -------------------------------------------------------------------------------- /starter_templates/python/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/python/config.yml -------------------------------------------------------------------------------- /starter_templates/ruby/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/ruby/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /starter_templates/ruby/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/ruby/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /starter_templates/ruby/code/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/ruby/code/Gemfile -------------------------------------------------------------------------------- /starter_templates/ruby/code/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/ruby/code/Gemfile.lock -------------------------------------------------------------------------------- /starter_templates/ruby/code/app/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/ruby/code/app/main.rb -------------------------------------------------------------------------------- /starter_templates/ruby/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/ruby/config.yml -------------------------------------------------------------------------------- /starter_templates/rust/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/rust/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /starter_templates/rust/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/rust/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /starter_templates/rust/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/rust/code/.gitignore -------------------------------------------------------------------------------- /starter_templates/rust/code/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/rust/code/Cargo.lock -------------------------------------------------------------------------------- /starter_templates/rust/code/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/rust/code/Cargo.toml -------------------------------------------------------------------------------- /starter_templates/rust/code/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/rust/code/src/main.rs -------------------------------------------------------------------------------- /starter_templates/rust/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/rust/config.yml -------------------------------------------------------------------------------- /starter_templates/typescript/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/typescript/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /starter_templates/typescript/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/typescript/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /starter_templates/typescript/code/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /starter_templates/typescript/code/app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/typescript/code/app/main.ts -------------------------------------------------------------------------------- /starter_templates/typescript/code/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/typescript/code/bun.lockb -------------------------------------------------------------------------------- /starter_templates/typescript/code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/typescript/code/package.json -------------------------------------------------------------------------------- /starter_templates/typescript/code/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/typescript/code/tsconfig.json -------------------------------------------------------------------------------- /starter_templates/typescript/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/typescript/config.yml -------------------------------------------------------------------------------- /starter_templates/zig/code/.codecrafters/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/zig/code/.codecrafters/compile.sh -------------------------------------------------------------------------------- /starter_templates/zig/code/.codecrafters/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/zig/code/.codecrafters/run.sh -------------------------------------------------------------------------------- /starter_templates/zig/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/zig/code/.gitignore -------------------------------------------------------------------------------- /starter_templates/zig/code/build.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/zig/code/build.zig -------------------------------------------------------------------------------- /starter_templates/zig/code/build.zig.zon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/zig/code/build.zig.zon -------------------------------------------------------------------------------- /starter_templates/zig/code/src/main.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/zig/code/src/main.zig -------------------------------------------------------------------------------- /starter_templates/zig/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecrafters-io/build-your-own-grep/HEAD/starter_templates/zig/config.yml --------------------------------------------------------------------------------