├── .gitignore ├── LICENSE.txt ├── README.md ├── output.PNG └── src ├── __init__.py ├── dictionary.txt ├── generate_patterns.py ├── input.txt ├── patterns.py └── solve.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanManchanda/nag-a-ram/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanManchanda/nag-a-ram/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanManchanda/nag-a-ram/HEAD/README.md -------------------------------------------------------------------------------- /output.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanManchanda/nag-a-ram/HEAD/output.PNG -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanManchanda/nag-a-ram/HEAD/src/dictionary.txt -------------------------------------------------------------------------------- /src/generate_patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanManchanda/nag-a-ram/HEAD/src/generate_patterns.py -------------------------------------------------------------------------------- /src/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanManchanda/nag-a-ram/HEAD/src/input.txt -------------------------------------------------------------------------------- /src/patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanManchanda/nag-a-ram/HEAD/src/patterns.py -------------------------------------------------------------------------------- /src/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanManchanda/nag-a-ram/HEAD/src/solve.py --------------------------------------------------------------------------------