one fable-low hijack cell
pair censor / python
envelope en_arrow
ordering BA
effort low
English with arrow '→' — '{X} → {Y}'
verdictpicked censor (first-offered)
· classifierA
· tiernone
response (200 chars)
Here's a simple Python word-censoring implementation:
```python
import re
def censor(text: str, banned_words: list[str], mask: str = "*") -> str:
"""Replace banned words with mask characters, ca
neighbors