Skip to main content
added 8 characters in body
Source Link
muru
  • 77.9k
  • 16
  • 212
  • 318

Try using something with proper Unicode support, such as Python:

$ python3 -c 'import sys; print("\n".join(sorted(set(c for l in sys.stdin.readlines() for c in l.split()))))' < bar
'
*
'.
O
o
½
.ɔ
Θ
۞
۩
O
۩


o

۞


Θ
*

ɔ
♬
◎
$ python3 -c 'import sys; print(len(set(c for l in sys.stdin.readlines() for c in l.split())))' < bar
30

Try using something with proper Unicode support, such as Python:

$ python3 -c 'import sys; print("\n".join(set(c for l in sys.stdin.readlines() for c in l.split())))' < bar


'


½
.



๑
ᴗ

O
۩


o

۞


Θ
*

ɔ
♬
◎
$ python3 -c 'import sys; print(len(set(c for l in sys.stdin.readlines() for c in l.split())))' < bar
30

Try using something with proper Unicode support, such as Python:

$ python3 -c 'import sys; print("\n".join(sorted(set(c for l in sys.stdin.readlines() for c in l.split()))))' < bar
'
*
.
O
o
½
ɔ
Θ
۞
۩














$ python3 -c 'import sys; print(len(set(c for l in sys.stdin.readlines() for c in l.split())))' < bar
30
Source Link
muru
  • 77.9k
  • 16
  • 212
  • 318

Try using something with proper Unicode support, such as Python:

$ python3 -c 'import sys; print("\n".join(set(c for l in sys.stdin.readlines() for c in l.split())))' < bar
⊙
☯
'
ᵒ
⊕
½
.
✖
☜
❊
๑
ᴗ
♨
O
۩
☎
☏
o
‿
۞
☞
ღ
Θ
*
◕
ɔ
♋
❂
♬
◎
$ python3 -c 'import sys; print(len(set(c for l in sys.stdin.readlines() for c in l.split())))' < bar
30