एक स्ट्रिंग से डुप्लिकेट निकालें


17

इस निराधार StackOverflow सवाल से प्रेरित है

विचार सरल है; एक स्ट्रिंग और स्ट्रिंग्स की एक सरणी दी गई है, इनपुट से स्ट्रिंग के शब्दों के किसी भी उदाहरण (मामले को अनदेखा करना) को पहले के अलावा किसी भी अतिरिक्त व्हाट्सएप के साथ छोड़ दें। शब्द इनपुट स्ट्रिंग में पूरे शब्दों से मेल खाना चाहिए, और शब्दों के कुछ हिस्सों में नहीं।

जैसे "A cat called matt sat on a mat and wore a hat A cat called matt sat on a mat and wore a hat", ["cat", "mat"]आउटपुट चाहिए"A cat called matt sat on a mat and wore a hat A called matt sat on a and wore a hat"

इनपुट

  • इनपुट को स्ट्रिंग के रूप में लिया जा सकता है, और स्ट्रिंग्स की एक सरणी या स्ट्रिंग्स की एक सरणी जहां इनपुट स्ट्रिंग पहला तत्व है। ये पैरामीटर या तो क्रम में हो सकते हैं।
  • इनपुट स्ट्रिंग को अंतरिक्ष-सीमांकित स्ट्रिंग्स की सूची के रूप में नहीं लिया जा सकता है।
  • इनपुट स्ट्रिंग में कोई अग्रणी, अनुगामी या लगातार स्थान नहीं होगा।
  • सभी इनपुट में केवल वर्ण होंगे [A-Za-z0-9] इनपुट स्ट्रिंग के अपवाद के साथ रिक्त स्थान भी शामिल हैं।
  • इनपुट ऐरे खाली हो सकता है या ऐसे शब्द हो सकते हैं जो इनपुट स्ट्रिंग में नहीं हैं।

उत्पादन

  • आउटपुट या तो किसी फ़ंक्शन से रिटर्न वैल्यू हो सकता है, या STDOUT में प्रिंट किया जा सकता है
  • आउटपुट मूल स्ट्रिंग के समान मामले में होना चाहिए

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

the blue frog lived in a blue house, [blue] -> the blue frog lived in a house
he liked to read but was filled with dread wherever he would tread while he read, [read] -> he liked to read but was filled with dread wherever he would tread while he
this sentence has no matches, [ten, cheese] -> this sentence has no matches
this one will also stay intact, [] -> this one will also stay intact
All the faith he had had had had no effect on the outcome of his life, [had] -> All the faith he had no effect on the outcome of his life
5 times 5 is 25, [5, 6] -> 5 times is 25
Case for different case, [case] -> Case for different
the letters in the array are in a different case, [In] -> the letters in the array are a different case
This is a test Will this be correct Both will be removed, [this,will] -> This is a test Will be correct Both be removed

इस कोड गोल्फ के रूप में, सबसे कम बाइट गिनती जीतता है!

जवाबों:


9

आर , 84 बाइट्स

function(s,w,S=el(strsplit(s," ")),t=tolower)cat(S[!duplicated(x<-t(S))|!x%in%t(w)])

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

एक चुनौती पर 100 से कम बाइट्स जो कि भी नहीं ?

स्पष्टीकरण:

हम स्ट्रिंग को शब्दों में तोड़ने के बाद, हमें उन लोगों को बाहर करने की आवश्यकता है जो हैं

  1. डुप्लिकेट और
  2. में w

या वैकल्पिक रूप से, इसे अपने सिर पर रखते हुए, जो कि रखते हैं

  1. एक शब्द की पहली घटना या
  2. में नहीं w

duplicatedबड़े करीने से उन लोगों के तार्किक सूचकांक लौटाते हैं जो पहली घटना नहीं हैं, इसलिए !duplicated()उन सूचकांकों को लौटाते हैं जो पहले घटित होते हैं, और उन लोगों के x%in%wलिए तार्किक सूचकांक लौटाते xहैं जो अंदर हैं w। साफ।


6

जावा 8, 117 110 बाइट्स

a->s->{for(String x:a)for(x="(?i)(.*"+x+".* )"+x+"( |$)(.*)";s.matches(x);s=s.replaceAll(x,"$1$3"));return s;}

स्पष्टीकरण:

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

a->s->{                // Method with String-array and String parameters and String return
  for(String x:a)      //  Loop over the input-array
    for(x="(?i)(.*"+x+".* )"+x+"( |$)(.*)";
                       //   Regex to match
        s.matches(x);  //   Inner loop as long as the input matches this regex
      s=s.replaceAll(x,"$1$3")); 
                       //    Replace the regex-match with the 1st and 3rd capture groups
  return s;}           //  Return the modified input-String

रेगेक्स के लिए अतिरिक्त स्पष्टीकरण:

(?i)(.*"+x+".* )"+x+"( |$)(.*)   // Main regex to match:
(?i)                             //  Enable case insensitivity
    (                            //  Open capture group 1
     .*                          //   Zero or more characters
       "+x+"                     //   The input-String
            .*                   //   Zero or more characters, followed by a space
               )                 //  End of capture group 1
                "+x+"            //  The input-String again
                     (           //  Open capture group 2
                       |$        //   Either a space or the end of the String
                         )       //  End of capture group 2
                          (      //  Open capture group 3
                           .*    //   Zero or more characters
                             )   //  End of capture group 3

$1$3                             // Replace the entire match with:
$1                               //  The match of capture group 1
  $3                             //  concatted with the match of capture group 3

4

MATL , 19 18 बाइट्स

"Ybtk@kmFyfX<(~)Zc

इनपुट्स हैं: सेल स्ट्रिंग ऑफ़ स्ट्रिंग्स, फिर एक स्ट्रिंग।

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

यह काम किस प्रकार करता है

"        % Take 1st input (implicit): cell array of strings. For each
  Yb     %   Take 2nd input (implicit) in the first iteration: string; or
         %   use the string from previous iteration. Split on spaces. Gives
         %   a cell array of strings
  tk     %   Duplicate. Make lowercase
  @k     %   Push current string from the array taken as 1st input. Make
         %   lowercase
  m      %   Membership: gives true-false array containing true for strings
         %   in the first input argument that equal the string in the second
         %   input argument
  F      %   Push false
  y      %   Duplicate from below: pushes the true-false array again
  f      %   Find: integer indices of true entries (may be empty)
  X<     %   Minimum (may be empty)
  (      %   Assignment indexing: write false in the true-false array at that
         %   position. So this replaces the first true (if any) by false
  ~      %   Logical negate: false becomes true, true becomes false
  )      %   Reference indexing: in the array of (sub)strings that was
         %   obtained from the second input, keep only those indicated by the
         %   (negated) true-false array
  Zc     %   Join strings in the resulting array, with a space between them
         % End (implicit). Display (implicit)

3

पर्ल 5 , 49 बाइट्स

@B=<>;$_=join$",grep!(/^$_$/xi~~@B&&$v{+lc}++),@F

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

सहेजे गए 9 (!!) बाइट्स थैंक्स टू @ सुसमाचार !


1
यह This is a test Will this be correct Both will be removed+ के लिए विफल लगता है this will। दूसरे दो शब्दों को सही ढंग से हटा दिया गया है, लेकिन यह किसी कारण beसे दूसरे के बाद भी हटा दिया गया है will
केविन क्रूज़सेन

1
@ केविनक्रूजसेन हम्म, मैं देख सकता हूं कि इस समय ऐसा क्यों हो रहा है। मैं कोशिश करूँगा और कल दोपहर के भोजन पर उचित नज़र डालूंगा, लेकिन मैंने अभी +4 की लागत पर तय किया है। मुझे बताने के लिए धन्यवाद!
डोम हेस्टिंग्स

४ ९ के लिए:@B=<>;$_=join$",grep!(/^$_$/xi~~@B&&$v{+lc}++),@F
टन हास्पेल

@ टोनहॉश आह, कुछ समय बिताने की कोशिश कर lcरहा था बिना परेंस के। बहुत बढ़िया! और सरणी के खिलाफ एक regex उपयोग कर रहा है ज्यादा बेहतर है, धन्यवाद! मैं आपके सभी सुझावों को याद रखने के लिए संघर्ष करता हूँ!
डोम हेस्टिंग्स

2

पायथ, 27 बाइट्स

jdeMf!}r0eT@mr0dQmr0dPT._cz

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

व्याख्या

jdeMf!}r0eT@mr0dQmr0dPT._cz
                          z  Take the string input.
                       ._c   Get all the prefixes...
    f    eT@                 ... which end with something...
     !}         Q    PT      ... which is not in the input and the prefix...
       r0   mr0d mr0d        ... case insensitive.
jdeM                         Join the ends of each valid prefix.

मुझे यकीन है कि असंवेदनशील जांच के लिए 10 बाइट्स कम किए जा सकते हैं, लेकिन मैं यह नहीं देखता कि कैसे।


2

स्टैक्स , 21 बाइट्स CP437

åìøΓ²¬$M¥øHΘQä~╥ôtΔ♫╟

25 बाइट्स अनपैक किए जाने पर,

vjcm[]Ii<;e{vm_]IU>*Ciyj@

परिणाम एक सरणी है। Stax के लिए सुविधाजनक आउटपुट प्रति लाइन एक तत्व है।

भागो और डिबग ऑनलाइन!

व्याख्या

vj                           Convert 1st input to lowercase and split at spaces,
  c                          Duplicate at the main stack
   m                         Map array with the rest of the program 
                                 Implicitly output
    []I                      Get the first index of the current array element in the array
       i<                    Test 1: The first index is smaller than the iteration index
                                 i.e. not the first appearance
         ;                   2nd input
          {vm                Lowercase all elements
             _]I             Index of the current element in the 2nd input (-1 if not found)
                U>           Test 2: The index is non-negative
                                 i.e. current element is a member of the 2nd input
                  *C         If test 1 and test 2, drop the current element
                                 and go on mapping the next
                    iyj@     Fetch the corresponding element in the original input and return it as the mapped result
                                 This preserves the original case

2

पर्ल 6 , 49 बाइट्स

->$_,+w{~.words.grep:{.lcw».lc||!(%){.lc}++}}

झसे आज़माओ

विस्तारित:

->              # pointy block lambda
  $_,           # first param 「$_」 (string)
  +w            # slurpy second param 「w」 (words)
{

  ~             # stringify the following (joins with spaces)

  .words        # split into words (implicit method call on 「$_」)

  .grep:        # take only the words we want

   {
     .lc        # lowercase the word being tested
               # is it not an element of
     w».lc      # the list of words, lowercased

     ||         # if it was one of the words we need to do a secondary check

     !          # Boolean invert the following
                # (returns true the first time the word was found)

     (
       %        # anonymous state Hash variable
     ){ .lc }++ # look up with the lowercase of the current word, and increment
   }
}

2

पर्ल 5 , 50 48 बाइट्स

के लिए शामिल +1है-p

STDIN पर अलग लाइनों पर प्रत्येक फिल्टर शब्द के बाद लक्ष्य स्ट्रिंग दें:

perl -pe '$"="|";s%\b(@{[<>]})\s%$&x!$v{lc$1}++%iegx;chop';echo
This is a test Will this be correct Both will be removed
this
will
^D
^D

chopकेवल अनुगामी अंतरिक्ष मामले में अंतिम शब्द हटा दिया जाता है ठीक करने के लिए की जरूरत है

बस कोड:

$"="|";s%\b(@{[<>]})\s%$&x!$v{lc$1}++%iegx;chop

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


1

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

s=>a=>s.split` `.filter(q=x=>(q[x=x.toLowerCase()]=eval(`/\\b${x}\\b/i`).test(a)<<q[x])<2).join` `

1

K4 , 41 बाइट्स

समाधान:

{" "/:x_/y@>y:,/1_'&:'(_y)~/:\:_x:" "\:x}

उदाहरण:

q)k){" "/:x_/y@>y:,/1_'&:'(_y)~/:\:_x:" "\:x}["A cat called matt sat on a mat and wore a hat A cat called matt sat on a mat and wore a hat";("cat";"mat")]
"A cat called matt sat on a mat and wore a hat A called matt sat on a and wore a hat"

q)k){" "/:x_/y@>y:,/1_'&:'(_y)~/:\:_x:" "\:x}["Case for different case";enlist "case"]
"Case for different"

q)k){" "/:x_/y@>y:,/1_'&:'(_y)~/:\:_x:" "\:x}["the letters in the array are in a different case";enlist "In"]
"the letters in the array are a different case"

q)k){" "/:x_/y@>y:,/1_'&:'(_y)~/:\:_x:" "\:x}["5 times 5 is 25";(1#"5";1#"6")]
"5 times is 25"

स्पष्टीकरण:

व्हॉट्सएप पर विभाजित करें, दोनों इनपुटों को कम करें, मैचों की तलाश करें, सभी को हटा दें लेकिन पहली घटना, स्ट्रिंग को एक साथ वापस मिलाएं।

{" "/:x_/y@>y:,/1_'&:'(_y)~/:\:_x:" "\:x} / the solution
{                                       } / lambda with implicit x & y args
                                  " "\:x  / split (\:) on whitespace " "
                                x:        / save result as x
                               _          / lowercase x
                          ~/:\:           / match (~) each right (/:), each left (\:)
                      (_y)                / lowercase y
                   &:'                    / where (&:) each ('), ie indices of matches
                1_'                       / drop first of each result
              ,/                          / flatten
            y:                            / save result as y
         y@>                              / descending indices (>) apply (@) to y
      x_/                                 / drop (_) from x
 " "/:                                    / join (/:) on whitespace " "

1

जावास्क्रिप्ट (Node.js) , 75 बाइट्स

f=(s,a)=>a.map(x=>s=s.replace(eval(`/\\b${x}\\b */ig`),s=>i++?"":s,i=0))&&s

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


1
के रूप में यह एक पुनरावर्ती कार्य नहीं है, आप f=अपने बाइट गिनती में शामिल करने की जरूरत नहीं है । आप मापदंडों को कम करके, के (s,a)=>साथ प्रतिस्थापित करके s=>a=>और फिर फ़ंक्शन को कॉल करके एक बाइट भी बचा सकते हैं f(s)(a)
झबरा

@ शिग्गी हाँ, लेकिन मैं वास्तव में फ़ंक्शन की परिभाषा को गॉल्फ़ करने के बारे में मन करता हूं क्योंकि मुख्य सौदा शरीर को गोल्फ कर रहा है। लेकिन यह एक अच्छी टिप है :)
DanielIndie

1

जावास्क्रिप्ट ईएस 6, 78 बाइट्स

f=(s,a,t={})=>s.split` `.filter(w=>a.find(e=>w==e)?(t[w]?0:t[w]=1):1).join` `

यह काम किस प्रकार करता है:

f=(s,a,t={})=> // Function declaration; t is an empty object by default
s.split` ` // Split the string into an array of words
.filter(w=> // Declare a function that, if it returns false, will delete the word
  a.find(e=>w==e) // Returns undeclared (false) if the word isn't in the list
  ?(t[w]?0 // If it is in the list and t[w] exists, return 0 (false)
    :t[w]=1) // Else make t[w] exist and return 1 (true)
  :1) // If the word isn't in the array, return true (keep the word for sure)
.join` ` // Rejoin the string

2
PPCG में आपका स्वागत है! चूंकि आप fपुनरावर्ती कॉल के लिए फ़ंक्शन नाम का उपयोग नहीं कर रहे हैं , एक अनाम फ़ंक्शन भी एक मान्य सबमिशन होगा, जिससे आप ड्रॉप करके दो बाइट्स बचा सकते हैं f=
मार्टिन एंडर

PPCG में आपका स्वागत है! दुख की बात यह है कि जब विभिन्न मामले शामिल होते हैं तो यह विफल हो जाता है।
झबरा

यदि यह उस के लिए नहीं था, तो आप इसे 67 बाइट्स
झबरा

@MartinEnder टिप के लिए धन्यवाद!
इयान

@ वस्तु के रूप में इनपुट ऐरे का उपयोग करना एक दिलचस्प विचार है जिसके बारे में मैंने नहीं सोचा था। मैं कोशिश करूँगा और मामले की समस्या को ठीक करूँगा।
इयान

0

PowerShell v3 या बाद में, 104 बाइट्स

Param($s,$w)$w|?{$_-and$s-match($r="\b$_(?: |$)")}|%{$h,$t=$s-split$r;$s="$h$($Matches.0)$(-join$t)"};$s

एक बाइट की कीमत पर, यह PS 2.0 के $Matches.0साथ बदलकर चल सकता है $Matches[0]

दीर्घ संस्करण:

Param($s, $w)
$w | Where-Object {$_ -and $s -match ($r = "\b$_(?: |$)")} |    # Process each word in the word list, but only if it matches the RegEx (which will be saved in $r).
    ForEach-Object {                                            # \b - word boundary, followed by the word $_, and either a space or the end of the string ($)
        $h, $t = $s -split $r                                   # Split the string on all occurrences of the word; the first substring will end up in $h(ead), the rest in $t(ail) (might be an array)
        $s = "$h$($Matches.0)$(-join $t)"                       # Create a string from the head, the first match (can't use the word, because of the case), and the joined tail array
    }
$s                                                              # Return the result


जो भी Save.ps1 के रूप में उपयोग करें और स्ट्रिंग और शब्दों के साथ तर्क के रूप में कॉल करें। यदि एक से अधिक शब्दों को पारित करने की आवश्यकता है, तो शब्दों को @ () में लपेटा जाना चाहिए:

.\Whatever.ps1 -s "A cat called matt sat on a mat and wore a hat A cat called matt sat on a mat and wore a hat" -w @("cat", "mat")

फ़ाइल के बिना वैकल्पिक (सीधे एक PS कंसोल में चिपकाया जा सकता है):
स्क्रिप्ट को एक चर में ScriptBlock (घुंघराले ब्रेसिज़ के अंदर) के रूप में सहेजें, फिर इसके इनवोक () विधि को कॉल करें, या इसे Invoke-Command के साथ उपयोग करें:

$f={Param($s,$w)$w|?{$_-and$s-match($r="\b$_(?: |$)")}|%{$h,$t=$s-split$r;$s="$h$($Matches.0)$(-join$t)"};$s}
$f.Invoke("A cat called matt sat on a mat and wore a hat A cat called matt sat on a mat and wore a hat", @("cat", "mat"))
Invoke-Command -ScriptBlock $f -ArgumentList "A cat called matt sat on a mat and wore a hat A cat called matt sat on a mat and wore a hat", @("cat", "mat")

0

जावास्क्रिप्ट, 150 बाइट्स

s=(x, y)=>{let z=new Array(y.length).fill(0);let w=[];for(f of x)(y.includes(f))?(!z[y.indexOf(f)])&&(z[y.indexOf(f)]=1,w.push(f)):w.push(f);return w}

गोल्फ के साथ मुद्दों के अलावा (वहाँ कुछ सुझावों के लिए अन्य जेएस समाधान पर एक नज़र है), यह शब्दों के एक सरणी के रूप में पहला इनपुट लेता है और शब्दों की एक सरणी आउटपुट करता है जिसे चुनौती की युक्ति द्वारा अनुमति नहीं है। विभिन्न मामलों में शामिल होने पर यह विफल भी हो जाता है।
झबरा

@ झागी "आउटपुट किसी फ़ंक्शन से रिटर्न वैल्यू हो सकता है" ऐसा लगता है कि यह फ़ंक्शन से मान लौटाता है?
प्रमोटरिस

0

क्लीन , 153 142 138 134 बाइट्स

import StdEnv,StdLib,Text
@ =toUpperCase
$s w#s=split" "s
=join" "[u\\u<-s&j<-[0..]|and[i<>j\\e<-w,i<-drop 1(elemIndices(@e)(map@s))]]

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

फ़ंक्शन को परिभाषित करता है $ :: String [String] -> String, बहुत अधिक शाब्दिक रूप से चुनौती का वर्णन करता है। यह प्रत्येक लक्ष्य शब्द के लिए पहले के बाद की प्रत्येक घटना को ढूंढता है और हटाता है।


0

रेटिना, ४६ 37 बाइट्स

+i`(^|,)((.+),.*\3.* )\3( |$)
$2
.*,

-14 बाइट्स धन्यवाद @ , और बग फिक्स के लिए +5 बाइट्स।

प्रारूप में इनपुट word1,word2,word3,sentence , क्योंकि मुझे यकीन नहीं है कि मल्टी-लाइन इनपुट (जहां इनपुट अलग-अलग तरीके से उपयोग किए जाते हैं)।

स्पष्टीकरण:

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

+i`(^|,)((.+),.*\3.* )\3( |$)   Main regex to match:
+i`                              Enable case insensitivity
   (^|,)                          Either the start of the string, or a comma
        (                         Open capture group 2
         (                         Open capture group 3
          .+                        1 or more characters
            )                      Close capture group 3
             ,                     A comma
              .*                   0 or more characters
                \3                 The match of capture group 3
                  .*               0 or more characters, followed by a space
                     )            Close capture group 2
                      \3          The match of capture group 2 again
                        ( |$)     Followed by either a space, or it's the end of the string
$2                              And replace everything with:
                                 The match of capture group 2

.*,                             Then get everything before the last comma (the list)
                                 and remove it (including the comma itself)

1
जैसा कि लिखा गया है कि आप पहली पंक्ति को +i`((.+),.*\2.* )\2( |$)दूसरी और दूसरी को सरल बना सकते हैं, $1लेकिन मैं ध्यान देता हूं कि आपका कोड often,he intended to keep ten geeseवैसे भी विफल रहता है।
नील

@ -14 गोल्फ के लिए धन्यवाद, और +1 के साथ बग को ठीक किया।
केविन क्रूज़सेन

... सिवाय इसके कि यह अब मूल परीक्षण मामलों में से एक पर विफल हो जाता है ...
नील

@ नील आह उफ़ .. फिर से तय किया +4 बाइट्स के लिए।
केविन क्रूज़सेन

खैर, अच्छी खबर यह है कि मुझे लगता है कि आप \bइसके बजाय उपयोग कर सकते हैं (^|,), लेकिन बुरी खबर यह है कि मुझे लगता है कि आपको जरूरत है \b\3\b(हालांकि अभी तक एक उपयुक्त परीक्षण मामले को तैयार नहीं किया है)।
नील

0

लाल , 98 बाइट्स

func[s w][foreach v w[parse s[thru[any" "v ahead" "]any[to remove[" "v ahead[" "| end]]| skip]]]s]

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

f: func [s w][ 
    foreach v w [                   ; for each string in the array
        parse s [                   ; parse the input string as follows:
            thru [                  ; keep everything thru: 
                any " "             ; 0 or more spaces followed by
                v                   ; the current string from the array followed by
                ahead " "           ; look ahead for a space
            ]
            any [ to remove [       ; 0 or more: keep to here; then remove: 
                " "                 ; a space followed by 
                v                   ; the current string from the array
                ahead [" " | end]]  ; look ahead for a space or the end of the string
            | skip                  ; or advance the input by one 
            ]
        ]
    ]
    s                               ; return the processed string 
]

0

भूसी , 13 बाइट्स

wüöVËm_Ṗ3+⁰ew

इस क्रम में, तार की एक सूची और तर्कों के रूप में एकल स्ट्रिंग लेता है। मान लेता है कि सूची डुप्लिकेट-मुक्त है। इसे ऑनलाइन आज़माएं!

व्याख्या

wüöVËm_Ṗ3+⁰ew  Inputs: list of strings L (explicit, accessed with ⁰), string S (implicit).
               For example, L = ["CASE","for"], s = "Case for a different case".
            w  Split S on spaces: ["Case","for","a","different","case"]
 ü             Remove duplicates wrt an equality predicate.
               This means that a function is called on each pair of strings,
               and if it returns a truthy value, the second one is removed.
  öVËm_Ṗ3+⁰e    The predicate. Arguments are two strings, say A = "Case", B = "case".
           e    Put A and B into a list: ["Case","case"]
         +⁰     Concatenate with L: ["CASE","for","Case","case"]
       Ṗ3       All 3-element subsets: [["CASE","for","Case"],["CASE","for","case"],
                                        ["CASE","Case","case"],["for","Case","case"]]
  öV            Does any of them satisfy this:
    Ë            All strings are equal
     m_          after converting each character to lowercase.
                In this case, ["CASE","Case","case"] satisfies the condition.
               Result: ["Case","for","a","different"]
w              Join with spaces, print implicitly.

0

न्यूनतम , 125 बाइट्स

=a () =b a 1 get =c a 0 get " " split
(:d (b d in?) ((c d in?) (d b append #b) unless) (d b append #b) if) foreach
b " " join

इनपुट quotइनपुट स्ट्रिंग के साथ पहले तत्व के रूप में स्टैक पर है, और quotडुप्लिकेट स्ट्रिंग्स के दूसरे तत्व के रूप में, यानी

("this sentence has no matches" ("ten" "cheese"))


0

AWK , 120 बाइट्स

NR%2{for(;r++<NF;)R[tolower($r)]=1}NR%2==0{for(;i++<NF;$i=$(i+s))while(R[x=tolower($(i+s))])U[x]++?++s:i++;NF-=s}NR%2==0

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

"व्हॉट्सएप हटाओ" भाग ने मुझे पहले सोचा की तुलना में थोड़ा अधिक चुनौतीपूर्ण बना दिया। के लिए एक क्षेत्र की स्थापना"" , निकालना, लेकिन एक अतिरिक्त विभाजक छोड़ देता है।

TIO लिंक में कई प्रविष्टियों को अनुमति देने के लिए 28 अतिरिक्त बाइट्स हैं।

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



0

पायथन 2 , 140 बाइट्स

from re import*
p='\s?%s'
S,A=input()
for a in A:S=sub(p%a,lambda s:s.end()==search(p%a,S,flags=I).end()and s.group()or'',S,flags=I)
print S

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

स्पष्टीकरण:

re.sub(..)प्रतिस्थापन स्ट्रिंग के बजाय एक फ़ंक्शन के रूप में ले सकते हैं। तो यहाँ हमारे पास कुछ फैंसी लैंबडा हैं। फंक्शन पैटर्न के प्रत्येक घटना के लिए कहा जाता है और इस फ़ंक्शन के लिए एक ऑब्जेक्ट पास किया जाता है - माचोबिज़। इस ऑब्जेक्ट में स्थापित घटना के बारे में जानकारी है। मैं इस घटना के सूचकांक में दिलचस्पी रखता हूं, जिसे कार्य start()या end()फ़ंक्शन द्वारा पुनर्प्राप्त किया जा सकता है। लैटर छोटा होता है इसलिए इसका उपयोग किया जाता है।

शब्द की पहली घटना के प्रतिस्थापन को बाहर करने के लिए, मैंने एक और रेगेक्स खोज फंक्शन का उपयोग किया ताकि वास्तव में झगड़े हो जाएं और फिर इंडेक्स की तुलना करें, उसी का उपयोग करके end()

ध्वज re.Iछोटा संस्करण हैre.IGNORECASES

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