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
Comment Post #283649 @#53503 That's considered one of the banned converters.
(more)
over 2 years ago
Comment Post #283649 @#8056 Use whatever output since I have no idea how to manage negative values as binary digits. I'd prefer using `0`, but that's all on you. You can enter an empty output too if you want.
(more)
over 2 years ago
Comment Post #283649 @#8056 Sure, thanks.
(more)
over 2 years ago
Comment Post #283649 @#8056 Name it whatever. I just used $n$ for demonstration. Thanks for pointing that out.
(more)
over 2 years ago
Comment Post #283620 @#53501 Ah, thanks for reminding me. I changed `7` into `10`.
(more)
over 2 years ago
Comment Post #283620 @#53837 Sorry. Mark doesn't use weed.
(more)
over 2 years ago
Comment Post #283620 @#53196 Okay, I changed it "a bit" to make it easier to handle.
(more)
over 2 years ago
Comment Post #283562 Thanks for the reimplantation. I was sleeping when you sent that comment. Oh well, props to ya for using `lambda`s.
(more)
over 2 years ago
Comment Post #283555 @#53837 True, `lambda`s aren't really my thing, but thanks for the golfing ideas!
(more)
over 2 years ago
Comment Post #283417 You can do more golfing now. :P
(more)
almost 3 years ago
Comment Post #283416 You can do more golfing now. :P
(more)
almost 3 years ago
Comment Post #283414 You can do more golfing now. :P
(more)
almost 3 years ago
Comment Post #283413 @#53837 So you don't get it? It's simple, the integers weren't swapped at all, only changed place in the output function.
(more)
almost 3 years ago
Comment Post #283408 This is a discussion thread for the above question. I'm just wondering if this might be considered a dupe.
(more)
almost 3 years ago
Comment Post #283404 @#53503 Thanks for that. I guess it's safe to assume that due to the impossibility, the challenge is cancelled.
(more)
almost 3 years ago
Comment Post #283380 @#8176 But can't you declare the headers on the Header section of TIO?
(more)
almost 3 years ago
Comment Post #283380 [467 bytes](https://tio.run/##VZFBbsMgEEWv4ngFmEi1uqnqWD1IlAUecIyKwR3AURrl7C6QVkoX6MP4Mf8zhj0YYc/bBpPASvctZwzSkpyF4@vLqb/VqGTN66syxl3S5oxK2aQDuktWDwKNCrliBHwmdTChSrooAVNSjMM1l41ec3nV7sGPojQwOt3LjZ3JRjA5cEaEjM4iliuASsxF9exdcdVmVZibO58J8R2Lp1Fz@Y7R@2KS4mbzJeJiMnCZdGm9aFuyYnq9KuGjqu/dSMBZH6rVackEfzoM9Aa...
(more)
almost 3 years ago
Comment Post #282238 @#8176 I love the creativity you got there for a C program, and how it really references the company well. Yeah, Somewhere Else is a bit crappy. I don't know if I actually will continue this series anymore. Copy-pasting? Yeah, sure, maybe I'll stop with that. If this series WILL continue (which I'm s...
(more)
almost 3 years ago
Comment Post #283341 @#53837 Don't worry. It's only THIS challenge (hopefully) of mine that'll ban specific built-ins. The only reason it was excluded to be used was to make the challenge harder. Getting those perfect squares with those 2 helpful operations is kinda boring, so I "flavored" it.
(more)
almost 3 years ago
Comment Post #283341 @#53837 I don't know how to make one at all. Might learn from Lyxal, but meh.
(more)
almost 3 years ago
Comment Post #283341 @#53584 All outputs starting from `0` until it stops outputting.
(more)
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
Comment Post #283231 @#53196 Yep. It also makes some cool calculations since GEMDAS is applied to it, meaning having a second character to present `+n` is a good idea to start with.
(more)
almost 3 years ago
Comment Post #283175 @#53837 Nevermind, I figured it out. It's in my answer already.
(more)
almost 3 years ago
Comment Post #283175 I have no idea how you got those XOR values. It's kinda confusing what values are going in.
(more)
almost 3 years ago
Comment Post #283231 @#53196 Yes, you can use whatever character to replace `!`, but that also means you can't use `!` anymore if you used a different character. Meaning `aaaa+++` is a valid input, which returns `7`, whilst `aaaa!!!+++` isn't. It'd be written `aaaa+++aaa` or `++++aaa+++` instead, which returns `10`.
(more)
almost 3 years ago
Comment Post #283231 @#53196 Yes. It can be used for addition too, now that I have edited it.
(more)
almost 3 years ago
Comment Post #283231 @#53196 I remember Kevin M. Mansour doing the same thing for "Caesar shift cipher", where they used a function to solve the challenge, so sure, that works too.
(more)
almost 3 years ago
Comment Post #283231 @#53588 Since we're focusing on integers, it's most likely integer division we'll be using.
(more)
almost 3 years ago
Comment Post #283231 @#53837 No, actually. It's basically the implementation of the operation from the preceding number. For example, `//` is basically `x / 2`. And I mentioned you CAN'T use symbols other than `+`, `-`, `!` and `(` at the very beginning of the input because it will return something to show it's invalid.
(more)
almost 3 years ago
Comment Post #283175 @#53837 Simple, use `<a class="badge is-tag">something</a>`. This will give <a class="badge is-tag">something</a>.
(more)
almost 3 years ago
Comment Post #283175 I don't know what the <a class="badge is-tag">blackbox-function</a> is supposed to be, but yeah, this may seem like a cool repetitive calculation challenge.
(more)
almost 3 years ago
Comment Post #283176 However, I'm thinking not just having <a class="badge is-tag">code-golf</a> + <a class="badge is-tag">tips</a>, but also burninate the <a class="badge is-tag">code-golf-tips</a> tag as well, to give more room to store tags. In other words, for some reason, the tag list has a max scroll so you won't b...
(more)
almost 3 years ago
Comment Post #283141 @#53588 As long as you separate each verse, then trailing newlines can be viable.
(more)
almost 3 years ago
Comment Post #283141 @#53196 I'm certain you can use snippets. I can't really make up what you're trying to make though, so do what suits ya.
(more)
almost 3 years ago
Comment Post #283134 And I love it. Vyxal is cool! :)
(more)
almost 3 years ago
Comment Post #283129 @#53588 So no `int` changing? Okay, let's see...
(more)
almost 3 years ago
Comment Post #283129 @#53588 Okay, I'll see what I can do but I won't delete this answer.
(more)
almost 3 years ago
Comment Post #283126 @#53588 Congrats.
(more)
almost 3 years ago
Comment Post #283035 @#53837 Uh, you're the one who cracked it?
(more)
almost 3 years ago
Comment Post #282798 @#53837 I re-included it if someone wants to look around. Maybe here, maybe there, at least somewhere, but a spot here might help.
(more)
almost 3 years ago
Comment Post #283035 Ya beat me to it, lad. I ain't British but still.
(more)
almost 3 years ago
Comment Post #282979 @#53503 Yep, it's Pyth, but sure, I'll edit it.
(more)
almost 3 years ago
Comment Post #282970 @#54151 Maybe, that's what everyone's been doing.
(more)
almost 3 years ago
Comment Post #282970 @#53588 Can you fix that comment, please? The link is supposed to be encased in parentheses, and the text is encased by brackets. :)
(more)
almost 3 years ago
Comment Post #282979 @#53588 Never knew that Japt had this, because I don't know Japt at all. Sorry, but that isn't the language I used here.
(more)
almost 3 years ago
Comment Post #282903 I think you forgot to mention about changing the number too if you want to use a different ROT$n$.
(more)
almost 3 years ago
Comment Post #282903 [191 bytes](https://tio.run/##PY67DoJAEAB/Bal2Iw/BxCiKhtjY22ksLseBmPOWrAcSid@OFko9M8ncRCsekqva@u1yGIrGSFuRcTogj7FnZRs2DgWsai2kgvAs/Ffmny5h6f1loFE8Wq5MGRRM9/1V8J5yBUCb1D25u9UsieIYtylQSoH84czCDKeMO0rIjxf4xjeMF02dC6sAe0nmQVoFmkrowD0orclznsQ6n7heNMdvB7gehg8)
(more)
almost 3 years ago
Comment Post #282903 I'd suggest closing "V8" with parentheses like what was given to you when you copied that stuff from TIO. Also, forgot to mention, you still need to find the input function for this to be completely valid, or show others how it works so they'd know how to replace the text.
(more)
almost 3 years ago
Comment Post #282881 @#53503 Oh. Can we have one here though?
(more)
almost 3 years ago