Quantcast
Channel: perl – We Saw a Chicken …
Viewing all articles
Browse latest Browse all 22

the russian peasants are multiplying!

$
0
0
Via this post, I found out about Russian Peasant Multiplication, a rather clever method of multiplication that only requires, doubling, halving and adding. So I wrote some code to display it: #!/usr/bin/python # -*- coding: utf-8 -*- import sys results=[] indicator=' ' left=int(sys.argv[1]) right=int(sys.argv[2]) while right >= 1:     indicator='X'     if right % 2: […]

Viewing all articles
Browse latest Browse all 22

Trending Articles