Metadata-Version: 2.4
Name: divisible_by_3_turing_machine
Version: 1.0.0
Summary: A simple Turing machine for checking binary divisibility by 3
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

# divisible_by_3_turing_machine

A simple Python package that implements a Turing machine to check if a binary number is divisible by 3.

## 🚀 Installation

```bash
pip install divisible-by-3-turing-machine
```

## 📦 Usage

```python
from divisible_by_3_turing_machine import check_divisable_by_3

# Test cases
print(check_divisable_by_3("101"))  # True
print(check_divisable_by_3("100"))  # False
```
