These are the go scripts I've written to solve Project Euler problems. Each problem has it's own script file (scripts/problem000).
You can see my progress on my profile:
To run a specific problem script, navigate to the corresponding directory and execute the main.go
file. For example, to run Problem 001:
cd scripts/problem001
go run main.go
This project uses Go modules for dependency management. You can install the required dependencies by running:
go mod tidy
This project is open source and available under the MIT License.