लेटर बॉक्सेड सत्यापनकर्ता


28

न्यूयॉर्क टाइम्स के पास एक दैनिक ऑनलाइन गेम है जिसे लेटर बॉक्सिंग कहा जाता है (लिंक एक पेवल के पीछे है; गेम को यहां भी वर्णित किया गया है ), एक वर्ग पर प्रस्तुत किया गया है:

न्यूयॉर्क टाइम्स से पत्र बॉक्सिंग उदाहरण

आपको 3 अक्षरों के 4 समूह दिए गए हैं (प्रत्येक समूह चित्र पर एक तरफ से मेल खाता है); कोई भी पत्र दो बार नहीं दिखाई देता है। खेल का उद्देश्य उन 12 अक्षरों (और केवल उन पत्रों) से बने शब्दों को खोजना है जैसे:

  • प्रत्येक शब्द कम से कम 3 अक्षर लंबा है;
  • लगातार पत्र एक ही पक्ष से नहीं हो सकते हैं;
  • किसी शब्द का अंतिम अक्षर अगले शब्द का पहला अक्षर बन जाता है;
  • सभी पत्रों का उपयोग कम से कम एक बार किया जाता है (पत्रों का पुन: उपयोग किया जा सकता है)।

इस चुनौती में, आपको पत्र और शब्दों की एक सूची दी जाती है। लक्ष्य यह जांचना है कि शब्दों की सूची एक वैध पत्र बॉक्सिंग समाधान है या नहीं।

इनपुट

इनपुट में 3 अक्षरों के (1) 4 समूह होते हैं और (2) शब्दों की एक सूची। यह किसी भी उपयुक्त प्रारूप में हो सकता है।

उत्पादन

एक सत्य मूल्य अगर शब्दों की सूची उन 4 × 3 अक्षरों के लिए लेटर बॉक्सिंग चुनौती का एक वैध समाधान है, और एक अन्यथा गलत है।

परीक्षण के मामलों

अक्षरों का समूह = {{I,C,O}, {M,R,E}, {G,N,S}, {A,P,L}}

सत्य मान

  • PILGRIMAGE, ENCLOSE
  • सीआरपीएस, सेल, लेआन, एनओपीई, एनजीएमए

मिथ्या भाव

  • PILGRIMAGE, ECONOMIES (CO के पास नहीं है क्योंकि वे एक ही तरफ हैं)
  • सीआरपीएस, सेल, लेआन, एनओपीई (जी और एम का उपयोग नहीं किया गया है)
  • PILGRIMAGE, ENCLOSURE (यू 12 अक्षरों में से एक नहीं है)
  • ENCLOSE, PILGRIMAGE (1 शब्द का अंतिम अक्षर 2 शब्द का पहला अक्षर नहीं है)
  • SCAMS, SO, ORGANIZE, ELOPE (सभी शब्द कम से कम 3 अक्षर लंबे होने चाहिए)।

ध्यान दें कि इस चुनौती में, हमें परवाह नहीं है कि क्या शब्द वैध हैं (एक शब्दकोश का हिस्सा)।

स्कोरिंग:

यह , बाइट्स जीत में सबसे कम स्कोर!


4
@TFeldno letter appears twice
feersum

एक सत्य मूल्य यदि शब्दों की सूची उन 4 × 3 अक्षरों के लिए लेटर बॉक्सिंग चुनौती का एक वैध समाधान है, और एक अन्यथा गलत है। पायथन (और अधिकांश अन्य भाषाओं के लिए, मुझे उम्मीद है), दोनों []और 0गलत हैं। क्या हम या तो आउटपुट कर सकते हैं या हमारा आउटपुट लगातार होना चाहिए?
आर्टेमिस मोनिका

@ArtemisFowl या तो ठीक है।
रॉबिन राइडर

मैंने ऐसा सोचा था, लेकिन मेरा सवाल था: क्या हम उन्हें मिला सकते हैं?
आर्टेमिस

@ArtemisFowl हाँ, आप उन्हें मिला सकते हैं।
रॉबिन राइडर

जवाबों:


6

जावास्क्रिप्ट (ईएस 6),  130  126 बाइट्स

के रूप में इनपुट लेता है (letters)(words)। रिटर्न 0 या 1

L=>W=>L.every(a=>a.every(x=>(W+'').match(x,a.map(y=>s+='|'+x+y))),p=s=1)&W.every(w=>w[2]&&p|w[0]==p&!w.match(s,p=w.slice(-1)))

इसे ऑनलाइन आज़माएं!

चरण 1

एलरों

L.every(a =>              // for each group of letter a[] in L[]:
  a.every(x =>            //   for each letter x in a[]:
    (W + '')              //     coerce W[] to a string
    .match(               //     and test whether ...
      x,                  //       ... x can be found in it
      a.map(y =>          //       for each letter y in a[]:
        s += '|' + x + y  //         append '|' + x + y to s
      )                   //       end of map()
    )                     //     end of match()
  ),                      //   end of inner every()
  p = s = 1               //   start with p = s = 1
)                         // end of outer every()

चरण 2

डब्ल्यू

W.every(w =>              // for each word w in W[]:
  w[2] &&                 //   is this word at least 3 characters long?
  p |                     //   is it the first word? (p = 1)
  w[0] == p &             //   or does it start with the last letter of the previous word?
  !w.match(               //   and finally make sure that ...
    s,                    //     ... it doesn't contain any invalid pair of letters
    p = w.slice(-1)       //     and update p to the last letter of w
  )                       //   end of match()
)                         // end of every()

6

जेली , 30 29 बाइट्स

FQṢ=Ṣ},i@€€’:3Iʋ,Ẉ>2ɗ,U=ḢɗƝ{Ȧ

इसे ऑनलाइन आज़माएं!

एक डायडिक लिंक जो शब्दों की सूची को बाएं तर्क के रूप में लेता है और सही तर्क के रूप में बॉक्स में अक्षरों की चपटा सूची है। यह 1सत्य के लिए और 0असत्य के लिए लौटता है ।

व्याख्या

F                               | Flatten the word list
 Q                              | Unique
  Ṣ                             | Sort
   =                            | Is equal to
    Ṣ}                          |   The sorted letterbox letters
      ,        ʋ                | Pair this with the following:
       i@€€                     |   The index of each letter of each word in the letterbox            
           ’                    |   Decrease by 1
            :3                  |   Integer divide by 3
              I                 |   Differences between consecutive ones (will be zero if any two consecutive letters in a word from same side of box)
                ,   ɗ           | Pair everything so far with the following:
                 Ẉ>2            |   Whether length of each input word is greater than 2
                     ,   ɗƝ{    | Pair everything so far with the following, applied to each neighbouring pair of the input word list
                      U         |   Upend (reverse) first word
                       =        | Compare characters to second
                        Ḣ       |   Take first (i.e. last character of first word equals first character of second)
                            Ȧ   | Flatten all of the above and check there are no false values

6

05AB1E , 37 35 33 32 31 29 28 बाइट्स

εk3÷üÊ}DO2@¹ü«εüQO}²{¹˜êQ)˜P

-2 बाइट्स ने अपने 05AB1E उत्तर में उपयोग किए गए êदृष्टिकोण @ इग्नू की प्रेरणा लेते हुए ।
-3 बाइट्स @Grimy के लिए धन्यवाद ।

पहले इनपुट के रूप में शब्दों के लिए पात्रों की सूची की सूची लेता है, और दूसरे इनपुट के रूप में बारह अक्षरों की चपटी सूची।

इसे ऑनलाइन आज़माएं या सभी परीक्षण मामलों को सत्यापित करें

स्पष्टीकरण:

ε         # Map over the character-lists `y` of the (implicit) input-list of words:
 k        #  Get the index of each character in the (implicit) input-list of letters
  3÷      #  Integer-divide each index by 3
    üÊ    #  Check for each overlapping pair of integers that they are NOT equal
}D        # After the map: duplicate the resulting list
  O       #  Get the sum of each inner list of truthy/falsey values
   2@     #  And check that each is larger than 2 (so all words had at least 3 letters)
¹ü        # Get all overlapping pairs of character-lists from the input-list of words:
  «       #  And merge them together to a flattened list of characters
   ε   }  # Map over those merged character lists:
    üQ    #  Check for each overlapping pair of characters in the list that they are equal
      O   #  And take the sum of this (where we'd expect 1/truthy if the last character of
          #  the first word and the first character of the second word are equal)
          #  (NOTE: This could fail for inputs with identical adjacent characters,
          #   but the earlier check of `εk3÷üÊ}` already covers for this)
²{        # Push the input-list of letters, and sort them
  ¹˜      # Push the input-list of list of word-letters, flattened,
    ê     # and then uniquified and sorted as well
     Q    # And check if both lists of characters are the same
        # Then wrap everything on the stack into a list, and deep flatten it
  P       # And check if everything is truthy by taking the product
          # (which is output implicitly as result)

1
@Grimy आह, कि पहली टिप्पणी वास्तव में एक स्पष्ट है। मैंने अभी इसे एक कैरेक्टर ऐरे में बदल दिया है, इसलिए अब यह वास्तव में काम करता है जहां यह तब नहीं होगा जब शब्द अभी भी स्ट्रिंग्स थे। मर्ज का यह दूसरा तरीका , जोड़ी की समानता की जांच करें, राशि काफी शानदार है, हालांकि! : डी थैंक्स (हमेशा की तरह)।
केविन क्रूज़सेन

1
एक और -1: ¹€g3@-> DO2@पहली जांच ( टीआईओ ) के बाद
ग्रिममी

1
@ ग्रेमी एक और अच्छा, धन्यवाद। अब हम 29 के जेली उत्तर से नीचे हैं। :)
केविन क्रूज़सेन

5

05AB1E , 42 बाइट्स

εg2›}P¹εεUIεXå}ƶO}üÊP}P¹ü‚ε`нsθQ}P¹Jê²JêQP

इसे ऑनलाइन आज़माएं!


यह ज्यादा नहीं है, लेकिन एक बाइट Pको नक्शे के बाद सभी को हटाकर , और )˜Pअंत में उपयोग करके बचाया जा सकता है । 41 बाइट्स के साथ अच्छा तरीका है ê! मेरे 05AB1E उत्तर में 2 बाइट्स सहेजे गए।
केविन क्रूज़सेन


4

जेली , 34 बाइट्स

Ṫ=¥/ƝḢ€Ạȧ⁸Fe€ⱮZḄ;IẠƊȧF}fƑF{
ẈṂ>2ȧç

एक डायडिक लिंक जो बाईं तरफ के शब्दों और दाईं ओर अक्षर समूहों को स्वीकार करता है जो कि 1यदि वैध है और 0नहीं तो पैदावार देता है ।

इसे ऑनलाइन आज़माएं! या परीक्षण-सूट देखें


4

हास्केल , 231 बाइट्स

import Data.List
l&w=all((>2).length)w&&c w&&all(l!)w&&(h l)%(h w)
h=concat
l%w=null[x|x<-l,x`notElem`w]
l!(a:b:c)=a#l?(b#l)&&l!(b:c)
l!_=1>0
Just a?Just b=a/=b
_?_=1<0
c#l=findIndex(elem c)l
c(a:b:t)=last a==head b&&c(b:t)
c _=1>0

इसे ऑनलाइन आज़माएं!

सर्वश्रेष्ठ स्कोर नहीं। कुछ हास्केल गुरु शायद 100 बाइट के तहत इसे प्राप्त करने में सक्षम होंगे।

प्रयोग

["ICO","MRE","GNS","APL"]&["CROPS", "SAIL", "LEAN", "NOPE", "ENIGMA"]

व्याख्या

import Data.List
l&w = all((>2).length)w &&      -- Every word has length > 2
      c w &&                    -- Every word ends with the same letter as the next one starts with
      all(l!)w &&               -- For every word: Consecutive letters are on different sides (and must exist on a side)
      (h l)%(h w)               -- All letters are used

h=concat                        -- Just a shorthand

l%w=null[x|x<-l,x`notElem`w]    -- The letters of l, with all letters of w removed, is empty

l!(a:b:c)=a#l?(b#l)&&l!(b:c)    -- Sides of the first two letters are different, recurse from second letter
l!_=1>0                         -- Until fewer than 2 letters remain

Just a?Just b=a/=b              -- Both sides must be different
_?_=1<0                         -- And must exist

c#l=findIndex(elem c)l          -- Find the side of letter c

c(a:b:t)=last a==head b&&c(b:t) -- Last letter of the first word must be same as first letter of second word, recurse starting from second word
c _=1>0                         -- Until there are fewer than 2 words

4

हास्केल , 231 बाइट्स

एक अलग हास्केल भिन्नता, बिल्कुल @Paul Mutser के आकार के समान :)

import Data.List
f x=filter(\a->length a>1)$concatMap subsequences x
g=nub.concat.f
p l(x:y)=foldl(\(m,n)c->(c,n&&length c>2&&(not$any(`isInfixOf`c)(f l))&&last m==head c))(x,True)y
z l w=null(g l\\g w)&&null(g w\\g l)&&(snd$p l w)

इसे ऑनलाइन आज़माएं!

Ungolfed

-- generate all invalid substrings
f :: [String] -> [String] 
f xs = filter (\x -> length x > 1) $ concatMap subsequences xs

-- utility function to flatten and remove duplicates
g :: [String] -> String
g  = nub $ concat $ f

-- verify that all conditions are satisfied along the list
p :: [String] -> [String] -> (String, Bool)
p l (x:xs) = foldl (\(m,n) c -> (c , n && length c > 2 && (not $ any (`isInfixOf` c)(f l)) && last m == head c)) (x, True) xs

-- put all the pieces together and consume input
z :: [String] -> [String] -> Bool
z l w = null (g l \\ g w) && null (g w \\ g l) && (snd $ p l w)

3

रूबी , 126 बाइट्स

->l,w{(/(_|^)..(_|$)/!~s=w*?_)&&!!s.chars.uniq[12]&&/__|^_|_$|(_.*)\1/!~s.gsub(/(.)_\1/,'\1').chars.map{|x|l.grep(/#{x}/)}*?_}

इसे ऑनलाइन आज़माएं!


अच्छा लगा, जब मैंने पहली बार चुनौती देखी तो मैंने कुछ ऐसा ही करने की कोशिश की, लेकिन 140-ies में कहीं न कहीं एक अंक दिया। BTW, कोष्ठक छोड़ने के बाद एक बाइट बचाओ grep
किरिल एल।

यह तब काम नहीं करता है जब अंतिम शब्द 1 या 2 अक्षर लंबा होता है, जैसे कि इसके बजाय puts f[l,['PILGRIMAGE','ENCLOSE','EG']]रिटर्न । truefalse
रॉबिन राइडर

1
आप सही हैं, निश्चित हैं
जीबी

3

जावा (JDK) , 188 बाइट्स

g->w->{var v=0<1;int x=0,l,i=0,j,p,z,y=w[0][0];for(;i<w.length;i++)for(l=w[i].length,v&=y==w[i][0]&l>2,j=0,p=-9;j<l;v&=z>=0&z/3!=p/3,x|=2<<(p=z))z=g.indexOf(y=w[i][j++]);return v&x==8190;}

इसे ऑनलाइन आज़माएं!

स्पष्टीकरण

g->w->{     // Lambda accepting letter groups as a string and a list of words, in the form of an array of char arrays.
 var v=0<1;     // Validity variable
 int x=0,       // The letter coverage (rule 4)
     l,         // The length of w[i]
     i=0,       // The w iterator
     j,         // The w[i] iterator
     p,         // The previous group
     z,         // The current group
     y=w[0][0]; // The previous character
 for(;i<w.length;i++) // For each word...
  for(
     l=w[i].length,     // make a shortcut for the length
     v&=y==w[i][0]&l>2, // check if the last character of the previous word is the same as the first of the current.
                        // Also, check if the length is at least 3
     j=0,               // Reset the iteration
     p=-9               // Set p to an impossible value.
    ;
     j<l                // 
    ;
     v&=z>=0&z/3!=p/3,  // Check that each letter of the word is in the letter pool,
                        //  and that the current letter group isn't the same as the previous one.
     x|=2<<(p=z)      // After the checks, assign z to p,
                        //  and mark the letter of the pool as used.
   )
   z=g.indexOf(y=w[i][j++]); // Assign the current letter to y so that it contains the last at the end of the loop.
                             //  and fetch the position of the letter in the pool.
 return v&x==8190; // Return true if all matched
                   //  and if the rule 4 is enforced.
}

क्रेडिट

  • सीट्स के लिए -2 बाइट्स धन्यवाद

2

लकड़ी का कोयला , 63 बाइट्स

⌊⁺⁺⁺⭆η›Lι²⭆⪫ηω№⪫θωι⭆⪫θω№⪫ηωι⭆η⭆ι⎇μ¬⁼Φθ№νλΦθ№ν§ι⊖μ∨¬κ⁼§ι⁰§§η⊖κ±¹

इसे ऑनलाइन आज़माएं!लिंक कोड के वर्बोज़ संस्करण के लिए है। स्पष्टीकरण:

⌊⁺⁺⁺

नीचे के भाव और आउटपुट को समाहित करें 0यदि उनमें से कोई भी शामिल है a0 अन्यथा1

⭆η›Lι²

समाधान आउटपुट में प्रत्येक शब्द के लिए चाहे उसकी लंबाई कम से कम 3 हो।

⭆⪫ηω№⪫θωι

समाधान आउटपुट में प्रत्येक अक्षर के लिए कि क्या यह पहेली में दिखाई देता है।

⭆⪫θω№⪫ηωι

पहेली आउटपुट में प्रत्येक अक्षर के लिए कि क्या यह समाधान में दिखाई देता है।

⭆η⭆ι⎇μ¬⁼Φθ№νλΦθ№ν§ι⊖μ∨¬κ⁼§ι⁰§§η⊖κ±¹

समाधान में प्रत्येक अक्षर के लिए जाँच करें कि पिछला अक्षर एक ही समूह में नहीं है, जब तक कि यह किसी शब्द का पहला अक्षर नहीं है, इस मामले में जाँच करें कि यह पिछले शब्द के अंतिम अक्षर के बराबर है, जब तक कि यह पहला न हो। समाधान का पत्र, जिस स्थिति में केवल इसे अनदेखा करें।


हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.