Metadata-Version: 2.4
Name: contain_101_or_not
Version: 1.1.0
Summary: Check if a binary string contains 101 using DFA
Author: Mohamed Khaled
Author-email: Mohamed khaled <mokhaled732003@gmail.com>
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: license-file
Dynamic: requires-python

# contain_101_or_not

A simple Python package to check whether a binary string is accepted by a DFA that recognizes strings containing "101".

## 🚀 Installation

```bash
pip install contain-101-or-not
```

## 📦 Usage

```python
from contain_101_or_not import check_accept_of_str

print(check_accept_of_str("1010"))  # True
print(check_accept_of_str("0000"))  # False
```
