100 Doors

Author: TimToady

You have 100 doors in a row that are all initially closed. You make 100 passes by the doors. The first time through, you visit every door and toggle the door (if the door is closed, you open it; if it is open, you close it). The second time you only visit every 2nd door (door #2, #4, #6, ...). The third time, every 3rd door (door #3, #6, #9, ...), etc, until you only visit the 100th door.

Task

What state are the doors in after the last pass? Which are open, which are closed?

More

http://rosettacode.org/wiki/100_doors#Raku

Features used

X** - http://doc.perl6.org/language/operators#Cross_Operators

Source code: 100-doors.pl

use v6;

say "Door $_ is open" for 1..10 X** 2;