入力が与えられたら、キーボードに沿ってN文字移動します


19

チャレンジ:

キーボードで入力できる入力がある場合、テキストをN文字ずつ移動します。

使用するQWERTYキーボードは次のとおりです。修飾キー(Shift、Caps、Enter、Delete、Tab)は無視できます。(たとえば|)ループバックの一方に到達すると、次のよう|になりQます。N = 1ます。

ここに画像の説明を入力してください

スペースを移動する必要はありません(修飾子をスキップすると、スペースに戻ります)。シフトは、(例えば、文字を入力するために使用された場合!@)変更された文字は、シフトを使用して入力する必要があります(すなわち!に行く@ではない2場合N = 1)。

英国のキーボードはこれとは異なりますが、比較できるようにこれを使用してください。

入力:

上記のキーボードで入力できる文の後に正の整数が続きます。この整数のサイズに最大値はありません。

出力:

同じ文、Nに沿ってシフト

例:

My name is Tim 3
?o .f/y [g I[/
Hello World 7
Spgge Oe[g;
I Wi5h I h4d b3773r C@d3ing ski{{s 3
{ T[8l { l7h ,6006u N%h6[.k g'[QQg

これはコードゴルフなので、最短のコードが勝ちます。


N<= 13元のキャラクターに戻るために、最大13シフトする必要があると想定できますか?
flawr

1
@flawrいや、ごめんなさい。任意の正の値を指定できます。
ティム

「Hello World 7」の例は「Spggr Oe [g;」ではありませんか?
ジェームズウィリアムズ

すべきではないHello World 7例があることSpgge Oe[g;?2つoは同じ文字にマップする必要があります
edc65

回答:


2

C、217バイト

char*t=" @A$%^*a)_(~.=/z-234567890\"'>`?Z#SNVFRGHJOKL:<MP{WTDYIBECUX]q\\&=1snvfrghjokl;,mp[wtdyibecux}Q|!";l,d,k;f(char*s){for(l=strlen(s);s[--l]-32;);d=atoi(s+l);for(s[l]=0;d--;)for(k=l;k--;s[k]=t[s[k]-32]);puts(s);}

空白、インクルードなどを含む読み取り可能なバージョン:

#include <string.h>
#include <stdlib.h>
#include <stdio.h>

char* t = " @A$%^*a)_(~.=/z-234567890\"'>`?Z#SNVFRGHJOKL:<MP{WTDYIBECUX]q\\&=1snvfrghjokl;,mp[wtdyibecux}Q|!";
int l, d, k;

void f(char* s) {
    l = strlen(s);
    for( ; s[--l] - 32; );
    d = atoi(s + l);
    s[l] = 0;
    for ( ; d--; ) {
        for (k = l; k--; s[k] = t[s[k] - 32]);
    }
    puts(s);
}

このコードは、それ自体を物語っています。各文字から次の文字にマップするルックアップテーブルだけで、指定された回数適用されます。コードの多くは、実際には入力から数値を解析するためのものです。


@Ypnypn Cで宣言されていない関数を使用できます。したがって、インクルードはビルドに必要ありません。通常、コンパイラの警告が表示されますが、ビルドおよび実行される限り許可されると言われています。
レトコラディ


1

Pyth、126バイト

XjdPczdsJc"~!@#$%^&*()_+ `1234567890-= qwertyuiop[]\ QWERTYUIOP{}| asdfghjkl;, ASDFGHJKL:\" zxcvbnm,./ ZXCVBNM<>?")sm.<dvecz)J

オンラインで試す:デモまたはテストスイート

説明:

    czd                       split input by spaces
   P                          remove the last element
 jd                           join by spaces (=#1)

          "..."               string with the chars of each row
         c     )              split by spaces
        J                     assign to J
       sJ                     sum of J (=#2)

                       cz)    split input by spaces
                      e       take the last element
                     v        and evaluate it 
                 m        J   map each row d of J to:
                  .<d           rotate the row d by value
                s             sum (=#3)

X                             Take #1, and replace the chars in #2 by the chars in #3

1

Python 3、311バイト

*i,s=input().split()
r=["`1234567890-=","qwertyuiop[]\\","asdfghjkl;'","zxcvbnm,./","~!@#$%^&*()_+","QWERTYUIOP{}|",'ASDFGHJKL:"',"ZXCVBNM<>?"]
print("".join([[x[int(s):]+x[:int(s)]for x in r][r.index([x for x in r if c in x][0])][([x for x in r if c in x][0]).index(c)]if c!=" "else " " for c in " ".join(i)]))

不要なスペースを削除します" " for c in " "
mbomb007

0

Python 3、271 255バイト

質問の中でシフトされた単語を作成するために使用されたベースラインは、ほとんど変更されていません。

x=input().split()
n=int(x[-1])
x=' '.join(x[:-1])
l=['`1234567890-=','qwertyuiop[]\\',"asdfghjkl;'",'zxcvbnm,./', '~!@#$%^&*()_+','QWERTYUIOP{}|','ASDFGHJKL:"','ZXCVBNM<>?',' ']
y=''
for i in x:
 for q in l:
  if i in q:y+=q[(q.index(i)+n)%len(q)]
print(y)

説明:

x=input().split()    # Get input
n=int(x[-1])         # Get N from input
x=' '.join(x[:-1])   # Get the words from input
                     # Create list of letters

l=['`1234567890-=', 'qwertyuiop[]\\',
   "asdfghjkl;'",   'zxcvbnm,./',
   '~!@#$%^&*()_+', 'QWERTYUIOP{}|',
   'ASDFGHJKL:"',   'ZXCVBNM<>?',
   ' ']

y=''                 # Blank string
for i in x:          # Loop through letters in input
    for q in l:      # Loop through items in list
        if i in q:   # Is letter of input in item of list?
            y+=q[                          # Append letter to y
                 (q.index(i)+n)            # locate the letter in item, and add N
                               %len(q)]    # % is modulus, loop to beginning if big
print(y)             # Print out the offset word.

これを削除すべきだと思います 他の人が独自の戦略を立てるようにしましょう
...-mbomb007

@ mbomb007それはあまりゴルフではありません、そして私はそれらを作成するためにそれを使用しました...私は個人的にそれを投稿するのに十分だと思います。
ティム

0

JavaScript(ES6)、200 216

テンプレート文字列を使用すると、改行は重要でカウントされます。

約注replace2つのスニペット string.split('x').map(w=>...)string.replace(/[^x]+/g,w=>...)分離器を使用して、文字列内の各部分の機能を実行するための等しく有効な方法です。区切り文字として改行を使用すると、置換正規表現がになり/.+/g、ドットが改行以外と一致するため便利です。そして、テンプレート化された文字列を使用すると、改行に余分な費用はかかりません。

f=(t,d)=>[for(c of t)`~!@#$%^&*()_+
1234567890-=
QWERTYUIOP{}|
qwertyuiop[]\\
ASDFGHJKL:"
asdfghjkl;'
ZXCVBNM<>?
zxcvbnm,./`.replace(/.+/g,r=>(p=r.indexOf(c))<0?0:q=r[(p+d)%r.length],q=c)&&q].join('')

// less golfed
x=(t,d)=>
  [for(c of t)
    '~!@#$%^&*()_+ 1234567890-= QWERTYUIOP{}| qwertyuiop[]\\ ASDFGHJKL:" asdfghjkl;\' ZXCVBNM<>? zxcvbnm,./'
    .split(' ')
    .map(r=>(p=r.indexOf(c))<0?0:q=r[(p+d)%r.length],q=c)&&q
  ].join('')
  
// TEST

out=x=>O.innerHTML+=x+'\n'

;[['Hello World',7,],['My name is Tim',3],['I Wi5h I h4d b3773r C@d3ing ski{{s', 3]]
.forEach(p=>out(p+' -> '+f(p[0],p[1])))
<pre id=O></pre>


0

CJam、107バイト

lS/)~\S*\",./ ;'  <>? :\"  _+~!@#$%^&*() -=`"A,s(++S/"zxcvbnm
asdfghjkl
[]\qwertyuiop"N/_32ff^+.+_@fm>s\ser

CJamインタープリターでオンラインで試してください。

使い方

lS/)   e# Read one line from STDIN, split at spaces and pop the last chunk.
~\S*\  e# Evaluate the popped chunk and join the remaining ones back together.
",./ ;'  <>? :\"  _+~!@#$%^&*() -=`"
       e# Push that string.
A,s(++ e# Concatenate it with "1234567890".
S/     e# Split at spaces.
"zxcvbnm asdfghjkl []\qwertyuiop"
       e# Push that string.
S/     e# Split at spaces. (`N/' would split at linefeeds.)
_32ff^ e# XOR each character of a copy with 32.
+      e# Concatenate the copies.
.+     e# Perform vectorized concatenation. This pushes the following array:
          [ ",./zxcvbnm" ";'asdfghjkl" "[]\qwertyuiop" "<>?ZXCVBNM"
           ":\"ASDFGHJKL" "{}|QWERTYUIOP" "_+~!@#$%^&*()" "-=`1234567890" ]
_@fm>  e# Rotate each chunk by the number of character specified in the input.
s\s    e# Flatten this array and the original.
er     e# Perform transliteration.


弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.