RosettaCodeData/Task/Letter-frequency/APL/letter-frequency.apl

16 lines
144 B
APL
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
freq{(),+/().}
freq 0 1 2 3 2 3 4 3 4 4 4
0 1
1 1
2 2
3 3
4 4
freq 'balloon'
b 1
a 1
l 2
o 2
n 1