mastodon.zunda.ninja is one of the many independent Mastodon servers you can use to participate in the fediverse.
Zundon is a single user instance as home of @zundan as well as a test bed for changes of the code.

Administered by:

Server stats:

1
active users

リスト内包表記はこういうときには強いんだなあ

$ python3 -c 'print(sum([i*j for i in range(1,10) for j in range (1,10)]))'
2025

zunda

内部イテレータでもなんとかなることはなる

$ ruby -e 'p (1..9).sum{|i| (1..9).sum{|j| i*j}}'
2025