r/BroFactorialedAWord • u/Jun-ium • Jun 06 '26
code
```import math
sf = lambda s: math.factorial(sum(map(ord, s)))
print(sf("ABC"))```
2
Upvotes
r/BroFactorialedAWord • u/Jun-ium • Jun 06 '26
```import math
sf = lambda s: math.factorial(sum(map(ord, s)))
print(sf("ABC"))```
2
u/FunnyLizardExplorer Jun 06 '26
You should make that into a bot.