├── .gitattributes ├── .gitignore ├── .idea ├── JFLAP.iml ├── encodings.xml ├── misc.xml └── modules.xml ├── LICENSE ├── README.md ├── divisor7.regex ├── divisor9.regex ├── divisor9recursive.regex └── generatedivisibility.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fionafibration/DivisibilityRegexes/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fionafibration/DivisibilityRegexes/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/JFLAP.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fionafibration/DivisibilityRegexes/HEAD/.idea/JFLAP.iml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fionafibration/DivisibilityRegexes/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fionafibration/DivisibilityRegexes/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fionafibration/DivisibilityRegexes/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fionafibration/DivisibilityRegexes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fionafibration/DivisibilityRegexes/HEAD/README.md -------------------------------------------------------------------------------- /divisor7.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fionafibration/DivisibilityRegexes/HEAD/divisor7.regex -------------------------------------------------------------------------------- /divisor9.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fionafibration/DivisibilityRegexes/HEAD/divisor9.regex -------------------------------------------------------------------------------- /divisor9recursive.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fionafibration/DivisibilityRegexes/HEAD/divisor9recursive.regex -------------------------------------------------------------------------------- /generatedivisibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fionafibration/DivisibilityRegexes/HEAD/generatedivisibility.py --------------------------------------------------------------------------------