Post History
Uiua, 10 bytes (SBCS) Counts all digit occurrences and checks the count array is all-equal (for which there is no short idiom in Uiua yet except for that deduplicate-length-equal-to-one and simila...
#1: Initial revision
# [Uiua](https://uiua.org/), 10 bytes (SBCS)
Counts all digit occurrences and checks the count array is all-equal (for which there is no short idiom in Uiua yet except for that deduplicate-length-equal-to-one and similar gymnastics).
```uiua
=1⧻◴⊕⧻⊸⊛°⋕
```
[Uiua pad this online](https://uiua.org/pad?src=0_19_0-dev_1__eJxtkD0KAjEQRvs9xRwh85dsCts9muDKgs0iYrtga2Eh2HmUOYlkIRAmpkoeL983yQR2vMAB7fGx68vmtWzmt83379PO62DLZtvNTgsgTIDuTORAHjvDK8TiCIvGDvUWqzokMXoLqaSlMfetOw7eRyJm6WIKJ2b2nIkJCT1XURURP2Cuq-EBJkip_adCNLZ3CymDOUTYoVrg83b2p7m-17fVnPZ_dj8gBeLAww8ZFeGY)
### Explanation
```uiua
=1⧻◴⊕⧻⊸⊛°⋕ 112233 example input
°⋕ "112233" unparse: convert to character array
⊸⊛ [0 0 1 1 2 2] "112233" push unique index per element,
keep argument on stack
⊕⧻ [2 2 2] determine per-group length: count array
◴ [2] deduplicate count array
⧻ 1 determine its length
=1 1 equal to 1?
```
