
String Reversal
String Reversal
Yeah, we crossed the river! (Though that straight alley from King Rat looks a bit unnatural.
)

-
- Posts: 144
- Joined: Fri Mar 28, 2008 11:29 pm
- Location: #hacker.org on Freenode
I'm pretty excited for this new system/language. Befunge always had a certain charm to it...
I like the shortcuts that were added... , is great. I also liked how it automatically null-terminated the input.
Are g and w for modifying the code? I'm assuming they deal w/ ASCII values?
Threads: do they terminate with ! as well, or will that terminate the entire program?
I like the shortcuts that were added... , is great. I also liked how it automatically null-terminated the input.
Are g and w for modifying the code? I'm assuming they deal w/ ASCII values?
Threads: do they terminate with ! as well, or will that terminate the entire program?
Judging by the third example program, ! terminates the whole program - it uses a timing construct to allow the second thread to run a certain number of cycles before ending the program.
This is fun to work with, although there are some oddities. You could do more with the 2Dness, e.g. all branches should have a built-in direction change, and : could automatically send program execution either left, right, or straight ahead, depending on its result. It would be more compact that way.
@ could have been "rotate" (right->up, up->left, etc), and that would have been useful.
I find the use of "s" before loops a bit inelegant.
This is fun to work with, although there are some oddities. You could do more with the 2Dness, e.g. all branches should have a built-in direction change, and : could automatically send program execution either left, right, or straight ahead, depending on its result. It would be more compact that way.
@ could have been "rotate" (right->up, up->left, etc), and that would have been useful.
I find the use of "s" before loops a bit inelegant.
-
- Posts: 144
- Joined: Fri Mar 28, 2008 11:29 pm
- Location: #hacker.org on Freenode
as you say, befunge was one of the inspirations, along with SNUSP, and of course HVM. the code can be self-modifying, yes.
i thought about having thread terminators, but wasn't sure there was a need. threads can always loop themselves. if someone makes a strong case for this i can add it.
gfoot, i like your ideas. i think i'm going to change the : operator. rotate is a neat idea but i'm not sure it adds that much.
i thought about having thread terminators, but wasn't sure there was a need. threads can always loop themselves. if someone makes a strong case for this i can add it.
gfoot, i like your ideas. i think i'm going to change the : operator. rotate is a neat idea but i'm not sure it adds that much.
Sorry for refering to an old topic.
For example, when we want to add 1 to the current value in a code, we usually just write like this:
But if we had a thread terminator (#), we would consider writing like this, because it will save 1 cycle:
I think we must not have thread terminators. If we had one, we would always have to consider making a thread everywhere in the code.adum wrote:i thought about having thread terminators, but wasn't sure there was a need. threads can always loop themselves. if someone makes a strong case for this i can add it.
For example, when we want to add 1 to the current value in a code, we usually just write like this:
Code: Select all
....1+....
Code: Select all
....&\....
1
+
#
Hey,
Just wanted to show off my amazing code...
Lol, thank god they didn't input 343...
I'm curious to see how others did it the actual proper way, 'cause I'm not sure how...
Just wanted to show off my amazing code...
Code: Select all
777**s/,x?\+ s/Px777**-?\!
\ / \ /
I'm curious to see how others did it the actual proper way, 'cause I'm not sure how...
The strings are zero terminated. So, 0 can be used instead of 343. Moreover, the two loops can be joined into one to shorten the code.
Code: Select all
0s/,x?\=+x\
=!\?x=/sP?/
One-liners are often the key to shorter solutions. The following program of size 21 passes all the test cases:
Code: Select all
0@@@@@@@@=,x?$+x?s!P$
-
- Forum Admin
- Posts: 497
- Joined: Sat May 28, 2011 9:14 am
- Location: Germany