পত্রের জন্য নম্বর


15

একটি খুব সরল সাইফার রয়েছে যা একটি বর্ণের বর্ণমালার অবস্থানের সাথে প্রতিস্থাপন করে। উদাহরণস্বরূপ, এই সিফারে abcপরিণত হবে 1 2 3

এই চ্যালেঞ্জটি এই সাইফারের বিকল্প গ্রহণ।


চ্যালেঞ্জ

এমন একটি প্রোগ্রাম তৈরি করুন যা ASCII অক্ষরগুলির একটি ইনপুট নেয় এবং একটি স্পেস-বিভাজিত স্ট্রিংয়ের আউটপুট দেয়:

  • -26মাধ্যমে পূর্ণসংখ্যার26

  • aমাধ্যমে চিঠিj

আউটপুটটি STDOUT বা আপনার ভাষার নিকটতম বিকল্পের মধ্যে দিয়ে আসা উচিত।


বিশেষ উল্লেখ

  • মূলধনপত্রগুলি অবহেলা করা উচিত। Dউদাহরণস্বরূপ একটি মূলধন হবে -4, যখন একটি ছোট হাত dহবে 4

  • অঙ্কগুলি তাদের আলফা অংশগুলিতে পরিবর্তন করা উচিত। 1সত্তা a, এবং তাই। ইনপুটটিতে যে কোনও শূন্য হবে j

  • সমস্ত অ-অক্ষর অক্ষর (স্পেস ব্যতীত) উপেক্ষা করা উচিত।

  • স্পেস হয় 0

  • আউটপুটে সংলগ্ন স্পেসগুলি একটি একক জায়গায় হ্রাস করা উচিত।

    Input: You + Me
    Correct Output: -25 15 21 0 -13 5
    Incorrect Output: -25 15 21 0 0 0 -13 5
    
  • একটি একক ট্রেলিং স্পেস বা নিউলাইন অনুমোদিত।


উদাহরণ

Input: programming puzzles
Output: 16 18 15 7 18 1 13 13 9 14 7 0 16 21 26 26 12 5 19

Input: Code Golf
Output: -3 15 4 5 0 -7 15 12 6

Input: Programming Puzzles & Code Golf
Output: -16 18 15 7 18 1 13 13 9 14 7 0 -16 21 26 26 12 5 19 0 -3 15 4 5 0 -7 15 12 6

Input: C0d3 G0lf
Output: -3 j 4 c 0 -7 j 12 6

Input: abc_ABC
Output: 1 2 3 -1 -2 -3

স্কোরবোর্ড

আপনার স্কোর বোর্ডে উপস্থিত হওয়ার জন্য, এটি এই ফর্ম্যাটে হওয়া উচিত:

# Language, Bytes

স্ট্রাইকথ্রুগুলি কোনও সমস্যার কারণ হবে না।



আউটপুট একটি পিছনে স্থান থাকতে পারে?
ডেনিস

হ্যাঁ. একটি একক ট্রেলিং স্পেস বা নিউলাইন অনুমোদিত। @ ডেনিস
জ্যাচ গেটস

কোনও ফাংশন কোনও স্ট্রিংকে ফিরিয়ে দেওয়া / মুদ্রণ করা কি একটি বৈধ উত্তর? এছাড়াও আপনি সমস্ত [^ \ ডাব্লু] এবং [re ডাব্লু] রেজেক্সকে বাতিল করতে "abc_ABC" এর মতো একটি পরীক্ষার কেস যুক্ত করতে পারেন?
সর্বোচ্চ

আপনি কী জিজ্ঞাসা করছেন তা আমি পুরোপুরি নিশ্চিত ছিলাম না তবে আমি পরীক্ষার কেসটি যুক্ত করেছি। আমি আশা করি আপনি এটিই খুঁজছিলেন; যদি না হয়, আমাকে জানাবেন। @ ম্যাক্স
জ্যাচ গেটস

উত্তর:


10

সিজেম, 58 57 54 51 50 49 বাইট

আমি যখন ব্যাখ্যাটি লিখেছিলাম, তখন আমি লক্ষ্য করেছি যে বিকল্প 50 বাইট সংস্করণগুলির মধ্যে একটি বাইট দ্বারা সংক্ষিপ্ত করা যেতে পারে ...

q_el_eu&S-A,s--S%S*{i_32md\2*5-*48md@)A%'a+\?}%S*

এটি এখানে পরীক্ষা করুন।

50 বাইট সমাধান:

q_el_eu&S-A,s--S%S*{_A,s&\i_)A%'a+\32md\2*5-*?}%S*
q_el_eu&S-A,s--S%'`*{i32md:D;(_(2*(D*D3+A%'a+?}%S*
q_el_eu&S-A,s--S%'`*{i32md\(_@_@(2*(*\3+A%'a+?}%S*
q_el_eu&S-A,s--S%'`*{i32md\(_(2*(g@*_z3+A%'a+?}%S*

ব্যাখ্যা

q         e# Read input.
_el_eu&   e# Intersect a lower-case version with an upper-case version to remove
          e# all letters.
S-        e# Remove spaces from that string.
A,s-      e# Remove digit characters from that string. It now contains all the
          e# the characters from the input we should ignore.
-         e# Remove these characters from the input.
S%S*      e# Split on runs of spaces and join by spaces, collapsing multiple into one.
{         e# Map this block onto each character...
  i_      e#   Convert to character code and make a copy.
  32md    e#   Get divmod 32. Note that digits have character codes 32 + something,
          e#   the upper case letters have character codes 64 + n (where n is the 
          e#   absolute value we want), while lower case letters have codes 96 + n. 
          e#   So the div gives 2 or 3 to distinguish capitalisation (and 1 for digits) 
          e#   and the mod gives the correct absolute value for letters.
          e#   As it happens, the mod also gives 0 for spaces.
  \2*5-   e#   Pull up the div, duplicate, subtract 5. Turns 2 into -1 and 3 into 1. 
          e#   It also turns 1 (digits) into -3.
  *       e#   Multiply the mod by this sign.
          e#   We now have the correct result for everything but digits. Note that
          e#   the absolute value for digits is more than 26, and for everything
          e#   else it's less than 27.
  48md    e#   Get divmod 48. This gives div 0 and mod n for all correct results n.
          e#   For digits it gives div -1 and we don't care about the mod. We'll
          e#   use the div as a truthy/falsy value to select the right result.
  @)A%    e#   Pull up the other copy of the character code, increment 
          e#   (range 49..58), take modulo 10.
          e#   This gives 9 for 0 and n-1 for any other digit n.
  'a+     e#   Add to the character a.
  \?      e#   Select the correct result based on the div 48.
}%
S*        e# Join the resulting values by spaces.

এটি অবশ্যই প্রথমবার হবে, নেতিবাচক মানগুলির জন্য সিজেমের মডুলো আচরণটি আমার পক্ষে কার্যকর ছিল।


6

জাভাস্ক্রিপ্ট (ES6), 110 107 133 120 বাইট

ওটা, বুড়ো আমার!

a=>[...a.replace(/[\W_]*?( ?)[\W_]*/g,'$1')].map(x=>(c=x.charCodeAt())<40?0:c<60?'jabcdefghi'[x]:c<91?64-c:c-96).join` `

গল্ফিংয়ের জন্য আরও অনেক বেশি জায়গা রয়েছে, বিশেষত রেজেক্সেস নোপে , এটি বেশ ভালই পেয়েছে। অবরুদ্ধ সংস্করণ:

function f(a) {
  // Replaces each run of bad chars and spaces with
  // a space if it contained one, nothing otherwise:
  a = a.replace(/[\W_]*?( ?)[\W_]*/g, '$1');

  var b = a.split('');
  b = b.map(function(x) {
    var c = x.charCodeAt();
    if (c == 32)     // space
      return 0;
    else if (c < 60) // numbers
      return 'jabcdefghi'.charAt(x);
    else if (c < 91)
      return 64 - c; // uppercase
    else
      return c - 96; // lowercase
  });
  b = b.join(' ');
  return b;
}

পরামর্শ স্বাগত!


পরীক্ষা '123___abc'। ইঙ্গিত: আপনার আন্ডারস্কোরগুলি পরিচালনা করতে হবে
edc65

আরেকটি সমস্যা: All non-alphanumeric characters should be ignored.। পরীক্ষা: 'এ $ বি' হওয়া উচিত-1 2
edc65

@ edc65 ওহ, মানুষ, আমি ভেবেছিলাম আমি এটি করেছি ... তবে আমাকে জানাতে ধন্যবাদ!
ETH প্রোডাকশনস

4

পাইথ, 50 49 বাইট

jdm?>d26C+70ddm-xZd26:-z-z=Zs[_rG1dGjk.<UT1)" +"d

এখানে চেষ্টা করে দেখুন ।

সম্পাদনা করুন: আন্ডারস্কোরগুলি সঠিকভাবে পরিচালনা করা হচ্ছে তা নিশ্চিত করতে পুনর্গঠিত স্ট্রিং স্যানিটাইটিসেশন। এমনকি এটি একটি বাইটও সংরক্ষণ করেছে, হ্যাঁ!

এই প্রোগ্রামটি একটি লুকিং স্ট্রিং তৈরি করে, যা ইনপুট স্যানিটাইজ করতে ব্যবহৃত হয়। এটি তখন সেই স্ট্রিংয়ের সাথে সম্পর্কিত সূচকে ম্যাপ করা হয়। শেষ অবধি, 26 এর বেশি যে কোনও সূচককে সঠিক ASCII অক্ষরে রূপান্তর করা হয়।

                                                     Implicit: z=input(), d=' ', ,
                                                       k='', G=[a-z]
                              _rG1                   Reversed, capitalised alphabet
                                  d                  Single space
                                   G                 Lower case alphabet
                                    jk.<UT1          '1234567890'
                            s[             )         Concatenate the 4 previous statements
                          =Z                         Store in Z
                        -z                           Setwise difference of input and above
                                                       (to get all illegal characters)
                      -z                             Setwise difference of input and illegal chars
                     :                      " +"d    Regex replace to lose multiple spaces
              m                                      Map the above over d:
                xZd                                    Get index of d in Z
               -   26                                  Subtract 26
  m                                                  Map the above over d:
   ?>d26                                               If d > 26
        C+70d                                            Convert (d+70) to ASCII
             d                                         Otherwise, select d
jd                                                   Join on spaces and print

পূর্ববর্তী সংস্করণ, যা \W50 বাইটে রেগেক্স ব্যবহার করেছে :

jdm?>d26C+70ddm-xs[_rG1\ Gjk.<UT1)d26::z"\W"d" +"d

3

জুলিয়া, 145 136 বাইট

r=replace;print(join([47<x<58?x+58-10(x>48):x==32?0:cmp(x,96)*(lowercase(x)-96)for x=r(r(readline(),r"[^a-z0-9 ]"i,""),r" +"," ")]," "))

Ungolfed:

# Read a string from STDIN
input = readline()

# Remove non-alphanumeric characters and replace duplicated spaces
r = replace(replace(input, r"[^a-z0-9 ]"i, ""), r" +", " ")

# Construct an array using comprehension over the replaced input string
A = [47 < x < 58 ? x + 58 - 10(x > 48) : x == 32 ? 0 : cmp(x, 96) * (lowercase(x) - 96) for x = r]

# Join the array elements with spaces
j = join(A, " ")

# Print to STDOUT
print(j)

অক্ষর হিসাবে অঙ্কগুলি পেতে আমরা ASCII মানতে 58 যোগ করি এবং বর্তমান অক্ষর 0 না হলে 10 বিয়োগ করি j এবং অন্যান্য অঙ্কগুলিতে মানচিত্র a- i

বড় হাতের অক্ষর ব্যবহার করে নেতিবাচক কাজ করা হয় cmp । এটি বড় হাতের অক্ষরের জন্য -1 এবং ছোট হাতের অক্ষরে ফিরে আসবে।

এটি অনলাইনে চেষ্টা করুন


2

পার্ল 5, 120 116 113 105 বাইট

প্রথমে অযাচিত অক্ষর এবং অতিরিক্ত স্থানগুলি পরিষ্কার করে।
তারপরে প্রতিটি চরিত্রের জন্য আসকি টেবিলটি উপরে উঠে যায়।

$_=pop;s/[^\w ]|_//g;s/ +/ /g;map{$n=ord;say$".($n>96?$n-96:$n>64?64-$n:$n>48?chr$n+48:$n>47?j:0)}split//

পরীক্ষা

$ perl -M5.01 numbers4letters.pl "zZaA _ 190"
 26 -26 1 -1 0 a i j
$ perl -M5.01 numbers4letters.pl "PrOgr4mm1n9 Puz2l3s & C0d3_G0lf!"
-16 18 -15 7 18 d 13 13 a 14 i 0 -16 21 26 b 12 c 19 0 -3 j 4 c -7 j 12 6

2
আপনি \ s এর জায়গায় রেজেক্সে একটি স্থানের সাথে একটি অক্ষর গল্ফ করতে পারেন এবং দ্বিতীয় রেজেক্সটি গল্ফ করতে পারেন s/ +/ /g, প্রথম রেজেক্সটি ভুল কারণ \ ডাবলু আন্ডারস্কোর চরিত্রের সাথে মেলে
সর্বোচ্চ

2
সাথে বাইরে আরেকটি দুটি অক্ষরs/[^\w ]|_//g
ম্যাক্স

ভাল, উপেক্ষা কেস পতাকা সঙ্গে তুলনায় আরও ভাল।
LukStorms

@ ম্যাক্স সুন্দর ইঙ্গিত আমার উত্তরে 2 বাইট সংরক্ষণ করা হয়েছে, আপনাকে ধন্যবাদ।
edc65

2

সি, 142 138 135

c,d;main(s){while(c=getchar()+1)d=c|32,c=d-98<26u?s=(d-97)*(c/32*2-5),0:c-48<11u?s='a'+c%10,4:c==33&&s?s=0,0:3,printf("%d \0%c "+c,s);}

কিছুটা অবহেলিত:

int c,d;
int main(int s)                     // s initially non-zero, meaning spaces are allowed
{
    while(c=getchar()+1)            // getchar until EOF (-1) encountered
    {
        d=c|32;                     // d becomes lowercase c (both incremented by 1)
        if (d-98<26u)               // check for letter
        {
            s=(d-97)*(c/32*2-5);    // print this number and allow subsequent spaces
            c=0;                    // format string will be "%d "
        }
        else if (c-48<11u)          // check for digit
        {
            s='a'+c%10;             // print this letter and allow subsequent spaces
            c=4;                    // format string will be "%c "
        }
        else if (c==33&&s)          // else if space and allowed to output spaces
        {
            s=0;                    // print 0 and disallow subsequent spaces
            c=0;                    // format string will be "%c "
        }
        else
        {
            c=3;                    // format string will be "", prints nothing
        }
        printf("%d \0%c "+c,s);     // final c is treated as index into string literal
    }
}

প্রদত্ত পরীক্ষাগুলি জিসিসি ৪.৯.৩ এবং কলঙ্ক ৩.৩.২ এ পাস করে।


2

> <> (মাছ), 219 209 বাইট

>i:84*=?v:86*1-)?!^:f4*2-(?v:88*)?!v:a9*1+(?v:c8*)?!^:ca*3+  (?v~
>4*(?vov>~86*$:@=?v86*00.  >:86*=?v77*1-+00.>88*-::-$-00.01-*8c<
 >.! ! ! 00~v?( 0:\00. >.!00+6*aa~<>~    92*2!.<2*29<
^7:;?=0:<r0~<
*o73.>n>84

এখানে চেষ্টা করে দেখুন

এটি আমার প্রথম কোড গল্ফ উত্তর! একটি কোড গল্ফ চ্যালেঞ্জের জন্য অবশেষে আমি যে ভাষাটি ব্যবহার করতে চাইছিলাম তা ব্যবহার করতে সক্ষম হয়েছি এবং অক্ষরগুলি স্বয়ংক্রিয়ভাবে দশমিকগুলিতে রূপান্তরিত হওয়ায় এটি নিখুঁত বলে মনে হয়েছিল।

আমি আশা করেছি যে আমার ফলাফলটি আরও ছোট হবে, তবে দৃশ্যত তা নয়। যদিও, আমি এটিকে খুব বেশি গল্ফ করিনি। কোডটি আরও পরিষ্কার হতে পারে / আরও অর্থবহ হতে পারে এমন কয়েকটি জায়গা রয়েছে তবে যে কোনও জায়গাতেই হোয়াইটস্পেসের প্রয়োজনের জায়গাগুলি থাকার কারণে তারা কোনও বাইট সংরক্ষণ করবে না। দ্বিতীয় লাইনের শেষ বিটে কিছুটা বাইট সংরক্ষণ করার উপায় রয়েছে, এটি বিপরীত দিকে যেতে এবং ইতিমধ্যে সেখানে থাকা 00 এর সাথে ম্যাশ করে যাচ্ছেন, আমাকে আরও পরে এটি খেলতে হবে

মূলত, বর্তমান চরটি কোন স্থান, সংখ্যা, বড় হাতের অক্ষর বা ছোট হাতের অক্ষর কিনা তা এই গ্রুপের সর্বোচ্চ / সর্বনিম্ন মানের মধ্যে হয় কিনা তা পরীক্ষা করে দেখুন। এটি যদি এর মধ্যে কোনও না হয় তবে তা বাতিল হয়ে যায়। এটি যদি এর মধ্যে একটিতে থাকে তবে এটি একটি অক্ষর হলে এটি একটি সংখ্যায় রূপান্তরিত হয় এবং একটি চিঠি যদি এটি একটি সংখ্যা হয় (বা বরং, -10৯-১০ from এর একটি সংখ্যা যা অক্ষরের জন্য আজ এর মান হয়)। তারপরে এটি পরীক্ষা করে যদি শীর্ষের মানটি 28 এর চেয়ে কম হয় তবে এই ক্ষেত্রে এটি একটি সংখ্যা এবং একটি সংখ্যার আউটপুট দেয়, অন্যথায় এটি একটি চিঠি এবং যে বর্ণটি প্রতিনিধিত্ব করে তার আউটপুট দেয়, একটি স্থান আউটপুট দেয়, তারপরে স্ট্যাকটি খালি না হওয়া পর্যন্ত লুপ হয়।


2

জাভাস্ক্রিপ্ট (ES6), 108 122 124

সম্পাদনা করুন @ ম্যাক্স এর মন্তব্য থেকে regexp ব্যবহার
Edit2 14 বাইট সংরক্ষিত ধন্যবাদ ETHProductions

এক্সো স্ক্রিপ্ট 6 কেবল তীর ফাংশনগুলির জন্য, সুতরাং এটি ফায়ারফক্স এবং সর্বশেষ ক্রোমে কাজ করা উচিত।

নীচে স্নিপেট চলমান পরীক্ষা করুন

F=
t=>t[R='replace'](/[^\w ]|_/g,'')[R](/ +|./g,c=>((v=parseInt(c,36))>9?c>'Z'?v-9:9-v:'jabcdefghi'[v]||0)+' ')

// Less golfed
U=t=>
  t.replace(/[^\w ]|_/g,'') // remove invalid characters
  .replace(/ +/g,' ') // collapse spaces
  .replace(/./g, c => ( // valid character replacing
    v = parseInt(c,36), // '0'..'9'-> 0..9, 'a'..'z' -> 10..25, ' ' -> NaN
    (
      v > 9 
      ? c > 'Z' ? v-9 : 9-v // manage upper vs lower
      : 'jabcdefghi'[v] || 0 // digits, NaN as an index gives undefined, substituted with 0
    ) + ' ' // separator space
  ))


// TEST
out=x=>O.textContent=x+'\n'+O.textContent;

function go() { out(I.value + ' --> ' + F(I.value) +'\n')}

// test cases, a trailing blank added to the expected output as ...
// "A single trailing space or newline is allowed."

;[
  ['A$b','-1 2 ']
, ['123___abc', 'a b c 1 2 3 ']
, ['You + Me','-25 15 21 0 -13 5 ']
, ['programming puzzles', '16 18 15 7 18 1 13 13 9 14 7 0 16 21 26 26 12 5 19 ']
, ['Code Golf', '-3 15 4 5 0 -7 15 12 6 ']
, ['Programming Puzzles & Code Golf', '-16 18 15 7 18 1 13 13 9 14 7 0 -16 21 26 26 12 5 19 0 -3 15 4 5 0 -7 15 12 6 ']
, ['C0d3 G0lf', '-3 j 4 c 0 -7 j 12 6 ']
].forEach(t=>{ 
  k=t[1],r=F(t[0]), 
  out('Test '+(k==r?'OK':'Fail')+'\nInput:  '+t[0]+'\nResult: '+r+'\nCheck:  '+k+'\n')
})
Custom test: <input id=I><button onclick='go()'>-></button>
<pre id=O></pre>


আমি ভুল হতে পারে, কিন্তু আমি মনে করি আপনি পরিবর্তন করে আভা সংরক্ষণ করতে পারবেন [R](/ +/g,' ')[R](/./g,করার [R](/ +|./g,। (কোনও পুরানো পোস্ট আনার জন্য দুঃখিত,
বিটিডব্লিউ

পছন্দ করুন ধন্যবাদ
edc65


1

সিজেম, 52 বাইট

'{,97>:L_eu+A,s(++S+l{1$&},S%S*\26,:)_Wf*+LA<+0+erS*

এটি অনলাইনে চেষ্টা করুন

সমাধানের মূল অংশটি হ'ল এটি সিজেএম ব্যবহার করে er (ট্রান্সলিটেশন) অপারেটরটি । অপারেটরের পক্ষে যুক্তি হিসাবে এটির জন্য সমস্ত অক্ষরের তালিকা এবং সংশ্লিষ্ট মানগুলির একটি তালিকা প্রয়োজন।

ইনপুটটিতে প্রাক প্রসেসিং পদক্ষেপ হিসাবে, এটি এমন অক্ষরগুলি সরিয়ে দেয় যা অনুবাদ টেবিলের অংশ নয় (বিশেষ অক্ষর), এবং একক জায়গায় পুনরাবৃত্ত স্পেসগুলি হ্রাস করে।

ব্যাখ্যা:

'{,97>  Build list of all lower case letters.
:L      Save it in variable L for later reuse.
_eu+    Add list of upper case letters.
A,s     Build digits "0123456789".
(+      Pop off first digit and append it at the end, to get "1234567890".
+       Add digits to list of characters.
S+      Add a space. List of characters that have values is now complete.
l       Get input.
{1$&},  Filter out all input characters that are not in list.
S%      Split input at spaces.
S*      And re-assemble it with spaces. This reduces multiple spaces to one space.
\       Swap input and character list.
26,     Start building list of values. Start with [0 ... 25].
:)      Use "smilie operator" to increment all values, to get [1 ... 26].
        These are the values for the lower case letters.
_Wf*    Copy the list and negate the values to get [-1 ... -26] for upper case.
+       Concatenate the two lists.
L       Retrieve the list of lower case letters we saved away earlier.
A<      Keep the first 10, which are the values for the digits.
+       Concatenate to list of values.
0+      Add 0 to list, as value for space.
er      Transliterate input string to corresponding values.
S*      Join with spaces for output.

1

পাইথন 2, 191 179 177 173 172 168 160 বাইট

import re
print" ".join([[[chr(x+48),"j"][x<49],[`[x-96,-x+64][x<96]`,"0"][x<65]][x>57or x<33]for x in map(ord,re.sub(" +"," ",re.sub("[^\w ]|_","",input())))])

পরীক্ষা

"programming puzzles"
16 18 15 7 18 1 13 13 9 14 7 0 16 21 26 26 12 5 19

"Code Golf"
-3 15 4 5 0 -7 15 12 6

"Programming Puzzles & Code Golf"
-16 18 15 7 18 1 13 13 9 14 7 0 -16 21 26 26 12 5 19 0 -3 15 4 5 0 -7 15 12 6

"C0d3 G0lf"
-3 j 4 c 0 -7 j 12 6

"You + Me"
-25 15 21 0 -13 5

1

পিএইচপি, 116 বাইট

while($c=ord(preg_replace(["#[^\w ]|_#","# +#"],["","@"],$argn))[$i++])echo$c<96?jabcdefghi[$c-48]?:64-$c:$c-96," ";

এসটিডিআইএন থেকে ইনপুট নেয়; সাথে চালানো-nR

ভাঙ্গন

while($c=ord(preg_replace(["#[^\w ]|_#","# +#"],["","@"],$argn) # sanitize input
    [$i++]))echo            # loop through string and print ...
    $c<96                       # if not lowercase:
        ?jabcdefghi[$c-48]          # digit -> letter
        ?:                          # if that turned out falsy (=empty):
        64-$c                       # uppercase (or former spaces) -> negative (or 0)
    :$c-96                      # else -> positive
," ";                           # append space

@লোয়ারকেস অংশে ফাঁকা স্থান পরিচালনা করতে আপনি ব্যাকটিক দিয়ে প্রতিস্থাপন করতে পারেন ।
সঙ্গে jabcdefghi0ডিজিটের জন্য, আপনি ব্যবহার করতে পারে :


আমি বিশ্বাস করি যে আপনাকে অবশ্যই "#_|[^\w ]#"পরিবর্তে অর্ডার পরিবর্তন করতে হবে "#[^\w ]|_#"
জার্গ হালসারম্যান

0

হাসিয়াম , 1156 বাইট

func main() {s = input();c="";for(x=0;x<s.length;x++){c=s[Convert.toNumber(Convert.toString(x))].toString();if (c.toLower()!=c)print(r(c.toLower())*-1);else if(r(c)=="")continue;else print(r(c));print(" ");}}func r(c) {if(c=="a")return 1;else if(c=="b")return 2;else if(c=="c")return 3;else if(c=="d")return 4;else if(c=="e")return 5;else if(c=="f")return 6;else if(c=="g")return 7;else if(c=="h")return 8;else if(c=="i")return 9;else if(c=="j")return 10;else if(c=="k")return 11;else if(c=="l")return 12;else if(c=="m")return 13;else if(c=="n")return 14;else if(c=="o")return 15;else if(c=="p")return 16;else if(c=="q")return 17;else if(c=="r")return 18;else if(c=="s")return 19;else if(c=="t")return 20;else if(c=="u")return 21;else if(c=="v")return 22;else if(c=="w")return 23;else if(c=="x")return 24;else if(c=="y")return 25;else if(c=="z")return 26;else if(c==" ")return 0;else if(c=="1")return "a";else if(c=="2")return "b";else if(c=="3")return "c";else if(c=="4")return "d";else if(c=="5")return "e";else if(c=="6")return "f";else if(c=="7")return "g";else if(c=="8")return "h";else if(c=="9")return "i";else if(c=="0")return "j";else return"";}

খুব দীর্ঘ উত্তর


1
জায়গাগুলি ভেঙ্গে যাওয়া বেশ কার্যকর বলে মনে হচ্ছে না। You + Meআউটপুট উত্পাদন করে -25 15 21 0 0 -13 5
ডেনিস

1
আকর্ষণীয় ভাষা, সি / জাভা / এর মতো ধরণের [অন্য ভাষার নাম আমি মনে করতে পারি না]। প্রতিটি চরিত্রকে একটি সংখ্যায় রূপান্তর করার সহজ উপায় কি আছে, যেমন একটি চর কোড পুনরুদ্ধার করার জন্য একটি ফাংশন ? (টেবিলের নিচে স্ক্রোল করুন এবং Decকলামটি দেখুন ))
ETH প্রোডাকশনগুলি

0

জেলি , 32 বাইট, ভাষা পোস্টডেটস চ্যালেঞ্জ

⁶ØB;µ³fi@€
Øaḣ⁵ṙ9
26RµN;;0¢;ị@ÑK

এটি অনলাইন চেষ্টা করুন!

ব্যাখ্যা

সহায়ক ফাংশন1Ŀ (প্রতিটি বর্ণানুক্রমিক / স্থান ইনপুট একটি সংখ্যায় অনুবাদ করে)

⁶ØB;µ³fi@€
⁶           space
 ØB;        append all digits, uppercase and lowercase letters (in that order)
    µ       set as the new default for missing arguments
     ³      first command-line argument
      f     delete all characters not in {space + alphanumerics}
       i@€  take index of each element within {space + alphanumerics}

সহায়ক ফাংশন (ধ্রুব স্ট্রিং প্রদান করে “jabcdefghi”)

Øaḣ⁵ṙ9
Øa      lowercase alphabet
  ḣ⁵    take first 10 elements
    ṙ9  rotate 9 elements to the left

মূল প্রোগ্রাম

26RµN;;0¢;ị@ÑK
26R             Range from 1 to 26
   µ            set as default for missing arguments
    N           Minus {each element of the range from 1 to 26}
     ;          with {the range from 1 to 26} appended
      ;0        with a 0 appended
        ¢;      with the result of 2£ prepended
          ị@    index into this using
            Ñ   the result of 1Ŀ
             K  separate by spaces

0

রেটিনা, 74 70 বাইট (প্রতিদ্বন্দ্বী)

3 লাইন শীর্ষস্থানীয় স্থান, 6 লাইন পিছনের স্থান এবং খালি দ্বিতীয় লাইন নোট করুন।

[^ \ ডব্লিউ] | _

 + +
~
।
$ + + 
[জেড]
- $ + +
T`L`l
[JS]
একটি $ + +
[TZ]
খ $ + +
T` ~ ld`dd0-6jl

অনলাইনে চেষ্টা করে দেখুন!

যদিও চ্যালেঞ্জের আগে ভাষাটি তৈরি করা হয়েছিল, তবে আমি মনে করি যে চ্যালেঞ্জ পরবর্তী পোস্টে আমি যে ভাষা বৈশিষ্ট্যগুলি ব্যবহার করেছি, তাই আমি এটিকে প্রতিযোগিতামূলক হিসাবে চিহ্নিত করেছি।


0

জাভা 7, 257 254 বাইট

class M{public static void main(String[]a){String r="",x;for(int c:a[0].getBytes()){x=(c>96&c<123?c-96:c>64&c<91?"-"+(c-64):c>48&c<58?(char)(c+48):c==48?"j":c<33?0:"")+"";r+=!x.isEmpty()&&!(r.endsWith("0 ")&x.equals("0"))?x+" ":"";}System.out.print(r);}}

এখানে চেষ্টা করুন।

ব্যাখ্যা:

class M{                               // Class
  public static void main(String[]a){  //  Required main-method
    String r="",                       //   Result-String
      x;                               //   Temp String
    for(int c:a[0].getBytes()){        //   Loop over the characters of the input-String
      x=(                              //    Set the temp String to:
        c>96&c<123?                    //     If it's a lowercase letter:
          c-96                         //      Set `x` to the 1-indexed alphabetic index
        :c>64&c<91?                    //     Else-if it's a uppercase letter:
          "-"+(c-64)                   //      Set `x` to the 1-indexed alphabetic index as negative
        :c>48&c<58?                    //     Else-if it's a digit 1-9:
          (char)(c+48)                 //      Set `x` to the 1-indexed alphabetic character
        :c==48?                        //     Else if it's a zero:
          "j"                          //      Set `x` to "j"
        :c<33?                         //     Else if it's a space:
          0                            //      Set `x` to "0"
        :                              //     Else:
          ""                           //      Set `x` to an empty String
       )+"";                           //     Required `+""` because `(char)` and `0` aren't Strings
      r+=                              //    Append the result-String with:
        !x.isEmpty()                   //     If `x` has a value
        &&!(r.endsWith("0 ")&x.equals("0"))?
                                       //     and it's not "0" with the previous value also being a zero
          x+" "                        //      Append the value of `x`, plus a space
        :                              //     Else:
          "";                          //      Append nothing
    }                                  //   End of loop
    System.out.print(r);               //   Print the result to STDOUT
  }                                    //  End of main-method
}                                      // End of class

ইনপুট এবং আউটপুট উদাহরণ:

Input:
Programming Puzzles & C0d3 G0lf

Output:
-16 18 15 7 18 1 13 13 9 14 7 0 -16 21 26 26 12 5 19 0 -3 j 4 c 0 -7 j 12 6 
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.