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 luap42‭

Type On... Excerpt Status Date
Edit Post #283274 Initial revision over 2 years ago
Article A two player tic-tac-toe
Your task is to develop a two player tic-tac-toe. The game rules: You have two players, one is called "X" and the other "O". You have a field of 3&times;3 positions; any position may be marked as "." (empty), "X" or "O". We start with every position being "." (empty). The player called "X"...
(more)
over 2 years ago
Comment Post #279231 @manassehkatz You're right. I added an extended rule saying that if you want to use this auto-output, you must include at least one of those command mode sequences. However if you don't want, you can assume that (for example) the `<?php` and `?>` tags are given and don't have to include them into the...
(more)
over 3 years ago
Edit Post #279231 Post edited:
over 3 years ago
Edit Post #279231 Initial revision over 3 years ago
Article The Palindrome Challenge
Your task is to write a program, which is palindromic. This means, that you can reverse it's source code and will get the exact same source code. I don't care, what your program does, as long as it does something visible to the user (like outputting something or creating a file) doesn't do a...
(more)
over 3 years ago
Edit Post #279167 Initial revision over 3 years ago
Answer A: Evaluate a single variable polynomial equation
Ruby, 50 bytes ```ruby def f(k,x)k.length>1?k[0]+f(k[1..-1],x)x:k[-1]end ``` Try it online! This uses the Horner's method recursively, because I think it'll be slightly shorter than using a loop or builtin array functions. Also, this is my first post on this website ... er my first real...
(more)
over 3 years ago
Edit Post #279143 Initial revision over 3 years ago
Question Meet the Codidact Team!
As we start on building a new community here together, we're bound to find some sticking points. Those might be bugs, new features you need, things you need support with... whatever they are, the Codidact team is here to support the growth of this site however we can. We'll keep tabs on how things...
(more)
over 3 years ago