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 »

Activity for General Sebast1an‭

Type On... Excerpt Status Date
Edit Post #281599 Post edited:
almost 3 years ago
Edit Post #283347 Post edited:
almost 3 years ago
Edit Post #283347 Initial revision almost 3 years ago
Answer A: Getting perfect squares, differently
[Python 3], 34 bytes x=0;y=1 while 1:x+=y;print(x);y+=2 Try it online! `1` is the `int` equivalent to `True`, which helps save bytes.
(more)
almost 3 years ago
Edit Post #283342 Post edited:
almost 3 years ago
Edit Post #283342 Post edited:
almost 3 years ago
Edit Post #283128 Post edited:
almost 3 years ago
Suggested Edit Post #279790 Suggested edit:

(more)
helpful almost 3 years ago
Suggested Edit Post #279778 Suggested edit:

(more)
helpful almost 3 years ago
Suggested Edit Post #279820 Suggested edit:

(more)
declined almost 3 years ago
Suggested Edit Post #280092 Suggested edit:

(more)
helpful almost 3 years ago
Suggested Edit Post #279852 Suggested edit:

(more)
helpful almost 3 years ago
Suggested Edit Post #279322 Suggested edit:

(more)
declined almost 3 years ago
Suggested Edit Post #280858 Suggested edit:

(more)
helpful almost 3 years ago
Suggested Edit Post #280829 Suggested edit:

(more)
helpful almost 3 years ago
Suggested Edit Post #281457 Suggested edit:

(more)
declined almost 3 years ago
Suggested Edit Post #280761 Suggested edit:

(more)
helpful almost 3 years ago
Suggested Edit Post #281599 Suggested edit:

(more)
helpful almost 3 years ago
Suggested Edit Post #280740 Suggested edit:

(more)
helpful almost 3 years ago
Suggested Edit Post #279199 Suggested edit:

(more)
helpful almost 3 years ago
Suggested Edit Post #279601 Suggested edit:

(more)
helpful almost 3 years ago
Edit Post #280828 Post edited:
almost 3 years ago
Edit Post #280882 Post edited:
almost 3 years ago
Suggested Edit Post #282280 Suggested edit:

(more)
helpful almost 3 years ago
Suggested Edit Post #280882 Suggested edit:

(more)
helpful almost 3 years ago
Suggested Edit Post #282511 Suggested edit:

(more)
helpful almost 3 years ago
Suggested Edit Post #282497 Suggested edit:

(more)
helpful almost 3 years ago
Suggested Edit Post #280828 Suggested edit:

(more)
helpful almost 3 years ago
Suggested Edit Post #279414 Suggested edit:

(more)
declined almost 3 years ago
Suggested Edit Post #279233 Suggested edit:

(more)
helpful almost 3 years ago
Suggested Edit Post #283128 Suggested edit:

(more)
helpful almost 3 years ago
Edit Post #283341 Post edited:
almost 3 years ago
Edit Post #283341 Post edited:
almost 3 years ago
Comment Post #283341 @#53584 All outputs starting from `0` until it stops outputting.
(more)
almost 3 years ago
Edit Post #283342 Initial revision almost 3 years ago
Answer A: Getting perfect squares, differently
[C (clang)], 47 45 43 bytes i,j;main(){for(;printf("%i ",i-=j);j+=2);} Try it online! Golfed 2 bytes from inspiration of @Shaggy's answer. Golfed 2 bytes by @m90.
(more)
almost 3 years ago
Edit Post #283341 Post edited:
almost 3 years ago
Edit Post #283341 Initial revision almost 3 years ago
Question Getting perfect squares, differently
Create a program that gets all perfect squares starting from `0` or `1` without using any methods of multiplication (repetitive addition) and exponentiation (repetitive multiplication). Output them for validation. Things such as built-ins/functions related to these unusable methods can't be used e...
(more)
almost 3 years ago
Edit Post #283231 Post edited:
almost 3 years ago
Edit Post #283231 Post edited:
almost 3 years ago
Edit Post #283337 Post edited:
almost 3 years ago
Edit Post #283231 Post edited:
almost 3 years ago
Edit Post #283337 Post edited:
almost 3 years ago
Comment Post #283337 @#53579 `()` has no numbers, returning `0`. `+/(+-)` is `1 / 1(1-1)` which means it's a divisibility by zero error. Thanks for that one. `(+-)/(+-)` is `0/0`, which in my form of understanding math, should be undefined, but for this challenge, let it return `0`.
(more)
almost 3 years ago
Edit Post #282881 Post edited:
almost 3 years ago
Edit Post #282804 Post edited:
almost 3 years ago
Edit Post #282650 Post edited:
almost 3 years ago
Edit Post #282239 Post edited:
almost 3 years ago
Edit Post #283337 Initial revision almost 3 years ago