#[05AB1E](https://github.com/Adriandmen/05AB1E/wiki/Commands), <s>6</s> <s>5</s> 2 [bytes](https://github.com/Adriandmen/05AB1E/wiki/Codepage) ιË Input as a list of characters. -3 bytes by porting [@Saggy's Japt answer](https://codegolf.stackexchange.com/a/189372/52210), so make sure to upvote him! [Try it online](https://tio.run/##yy9OTMpM/f//3M7D3f//RyuFKOmAcQYUZ0JxMRQrQDEu8RQozofiUihOguIcKE6FYpg@mDkFUAyTT4TibChWBONYAA) or [verify a few more test cases](https://tio.run/##yy9OTMpM/V9TVmmvpPCobZKCkn1l8P9zOw93/9f5HxKSkZGZWVysoAAhU1Ly80tLk5JyclJTFRSKiwsKUlMTE7OzFRW5iFbKRYKZqcUlXD45@fnl5ampRUXJyYmJxcWpqVzOzvn5RUWpqcnJJSUKClZWmppcJUCQmlpcXFKiCNSYCAcA). **Explanation:** <!-- language-all: lang-python --> ι # Uninterleave the (implicit) input-list of characters # i.e. ["t","t","t","t","e","e","s","s","t","t","!","!","!"] # → [["t","t","e","s","t","!","!"],["t","t","e","s","t","!"]] Ë # Check if both inner lists are equal # → 0 (falsey) # (after which the result is output implicitly)