Post History
Vyxal, 12 bytes bṠ:₍gGvc†Tİ∑ Try it Online! İ # Index into input T # Indices where v # For each Ṡ # Sum of b # Binary digits ₍gG ...
#1: Initial revision
# [Vyxal](https://github.com/Vyxal/Vyxal), 12 bytes
```
bṠ:₍gGvc†Tİ∑
```
[Try it Online!](https://vyxal.pythonanywhere.com/#WyIiLCIiLCJi4bmgOuKCjWdHdmPigKBUxLDiiJEiLCIiLCJhYmNkZWZnIl0=)
```
İ # Index into input
T # Indices where
v # For each
Ṡ # Sum of
b # Binary digits
₍gG # Does [min, max]
† # Not
c # contain
: # That value?
∑ # Concatenate into a single string
```
