Search Results

45
votes

Code Golf Christmas Edition: How to print out a Christmas tree of height N

Language: Perl, Char count: 50 (1 relevant spaces) perl: one line version: print$"x($a-$_),'*'x($_*2+1),$/for 0..($a=pop)-1,0 and now with more whitesap …
0
votes

Defend zero-based arrays

If you were in somewhere other than America, the ground level of a building is the ground floor and the floors above it start at 1. Zero based arrays therefore seem more natural to non-Americans I …