Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Challenges

Comments on Looping counter

Parent

Looping counter

+9
−0

Looping counter

Create an infinite loop that outputs lines of asterisks, with each line containing one more asterisk. Instead of the asterisk, any printable, non-whitespace character can be used. However all lines need to use the same character.

The beginning of the output looks like this:

*
**
***
****
*****
******
*******
********
*********
**********
***********
************

An ungolfed Python implementation:

from itertools import count

for i in count(1):
    print('*'*i)
History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

2 comment threads

Minimum maximum (1 comment)
Output line 0. Input for starting line (1 comment)
Post
+1
−0

Fig, 5 bytes

The actual score is $5\log_{256}(96)\approx$ 4.116 bytes. The leaderboard only likes ints in the header.

(J,Q0

-1 char thanks to Seggan

Try it online!

Fractional byte lang created by Seggan. Is this even allowed here?

(J,Q0
  ,Q    : Print and return last return value, initialized as 0
 J  0   : Add 0 to end of result
(       : Loop forever
History
Why does this post require moderator attention?
You might want to add some details to your flag.

1 comment thread

The leaderboard thinks this is 116 bytes lol. You might want to change it to 4 or 5 (2 comments)
The leaderboard thinks this is 116 bytes lol. You might want to change it to 4 or 5
steffan153‭ wrote over 1 year ago

The leaderboard thinks this is 116 bytes lol. You might want to change it to 4 or 5

south‭ wrote over 1 year ago

Yeah...I tried a ton to get it to parse correctly my edit history is fucked. Might as well just round.