Sundown / swsort

:tropical_fish: Sort strings based on char sum.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Short program to sort strings (stdin) by weight (sum of chars in string).

How it works:

$ wsort XYZ abc ABCD ... 123

... 	[46 46 46]	->	138
123 	[49 50 51]	->	150
ABCD 	[65 66 67 68]	->	266
XYZ 	[88 89 90]	->	267
abc 	[97 98 99]	->	294

About

:tropical_fish: Sort strings based on char sum.

License:MIT License


Languages

Language:C 92.4%Language:Makefile 7.6%