String Reversal

Discussion of challenges you have already solved
tog
Posts: 70
Joined: Fri Nov 14, 2008 11:23 am
Location: Germany

String Reversal

Post by tog »

Yeah, we crossed the river! (Though that straight alley from King Rat looks a bit unnatural. :P )
User avatar
adum
Posts: 392
Joined: Thu Apr 19, 2007 12:49 pm
Contact:

Post by adum »

:D
MerickOWA
Posts: 182
Joined: Mon Apr 07, 2008 5:54 pm
Location: HkRkoz al KuwaiT 2019 HaCkEr 101

Post by MerickOWA »

That was interesting. I miss the ability to drop off the top of item in the stack.
User avatar
adum
Posts: 392
Joined: Thu Apr 19, 2007 12:49 pm
Contact:

Post by adum »

you still have that ability, in disguise...
therethinker
Posts: 144
Joined: Fri Mar 28, 2008 11:29 pm
Location: #hacker.org on Freenode

Post by therethinker »

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?
gfoot
Posts: 269
Joined: Wed Sep 05, 2007 11:34 pm
Location: Brighton, UK

Post by gfoot »

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.
therethinker
Posts: 144
Joined: Fri Mar 28, 2008 11:29 pm
Location: #hacker.org on Freenode

Post by therethinker »

Rather than change @ and :, there could possibly be more additions? O and #, per-se?

And although s before loops does seem a bit redundant, think of it as an unconditional ?. This language looks like it can handle loops much much easier.
ShardFire
Posts: 26
Joined: Wed May 30, 2007 4:26 pm
Location: United Kingdom

Post by ShardFire »

Nah, # looks like a grate, and when it is executed the PC falls into the memory table and starts executing that instead! You can just make up anything...
User avatar
adum
Posts: 392
Joined: Thu Apr 19, 2007 12:49 pm
Contact:

Post by adum »

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.
tails
Posts: 191
Joined: Tue Jun 10, 2008 7:51 pm
Location: Tokyo

Post by tails »

Sorry for refering to an old topic.
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.
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.

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+....
But if we had a thread terminator (#), we would consider writing like this, because it will save 1 cycle:

Code: Select all

....&\....
     1
     +
     #
User avatar
adum
Posts: 392
Joined: Thu Apr 19, 2007 12:49 pm
Contact:

Post by adum »

hmmn, interesting point. of course, it's slightly non-trivial, because the main thread will have to sit waiting for the add to complete before messing with the stack. but i think you're right in general.
Schubert
Posts: 1
Joined: Wed Dec 23, 2009 12:26 pm

Post by Schubert »

Hey,
Just wanted to show off my amazing code...

Code: Select all

777**s/,x?\+ s/Px777**-?\!
      \   /   \         /
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...
User avatar
teebee
Posts: 89
Joined: Mon Nov 10, 2008 3:21 pm
Location: Germany

Post by teebee »

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?/
User avatar
teebee
Posts: 89
Joined: Mon Nov 10, 2008 3:21 pm
Location: Germany

Post by teebee »

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$
AMindForeverVoyaging
Forum Admin
Posts: 497
Joined: Sat May 28, 2011 9:14 am
Location: Germany

Post by AMindForeverVoyaging »

My solution:

Code: Select all

%0s/,0^\
       0
   \   :!
       \? s/0^\
              0
           \ P:!
              !
Not the best - but it passed ;)
Post Reply