Perl, 45 +1 = 46 Bytes
+1 Byte für -n Flag
$a=a,$b=b;say($a),($a,$b)=($b,$a.$b)for 1..$_
Leichte Verbesserung gegenüber der bestehenden 49-Byte-Lösung, wurde jedoch separat entwickelt. Die Klammern für say($a)
sind notwendig, da sie andernfalls $a,($a,$b)=($b,$a.$b)
als Argument interpretiert werden, das say
mehr Junk ausgibt, als wir benötigen.
Perl, 42 Bytes
$b=<>;$_=a;say,y/ab/bc/,s/c/ab/g while$b--
Ein separater Ansatz von der obigen Lösung:
$b=<>; #Read the input into $b
$_=a; #Create the initial string 'a' stored in $_
say #Print $_ on a new line
y/ab/bc/ #Perform a transliteration on $_ as follows:
#Replace 'a' with 'b' and 'b' with 'c' everywhere in $_
s/c/ab/g #Perform a replacement on $_ as follows:
#Replace 'c' with 'ab' everywhere in $_
, , while$b-- #Perform the operations separated by commas
#iteratively as long as $b-- remains truthy
Ich bin noch nicht davon überzeugt, dass ich Transliteration und Ersetzung nicht in einer einzigen, kürzeren Operation kombinieren kann. Wenn ich einen finde, werde ich ihn posten.