ค้นหา Anagrams ทั้งหมด!


16

แม้จะมีคำถาม 17 ข้อที่ติดแท็กแอนแต่เราก็ยังไม่มีคำถามนี้ดังนั้นจึงเป็นเช่นนี้

งานของคุณ

คุณต้องเขียนโปรแกรมหรือฟังก์ชั่นที่เมื่อได้รับสตริงให้พิมพ์แอนนาแกรมที่เป็นไปได้ทั้งหมด สำหรับวัตถุประสงค์ของคำถามนี้แอนนาแกรมคือสตริงที่มีอักขระเหมือนกันกับสตริงดั้งเดิม แต่ไม่ใช่สำเนาที่แน่นอนของสตริงดั้งเดิม แอนนาแกรมไม่จำเป็นต้องเป็นหรือมีคำที่แท้จริง

อินพุต

คุณอาจยอมรับสตริงซึ่งอาจมีความยาวใด ๆ > 0 โดยวิธีการอินพุตมาตรฐาน มันอาจมีอักขระ ASCII ใด ๆ

เอาท์พุต

คุณสามารถส่งออกแอนนาแกรมที่เป็นไปได้ทั้งหมดของสตริงที่ป้อนเข้าด้วยวิธีมาตรฐาน คุณต้องไม่ส่งออกสตริงเดียวกันสองครั้งหรือส่งออกสตริงเท่ากับอินพุต

กฎอื่น ๆ

ช่องโหว่มาตรฐานไม่ได้รับอนุญาต

เกณฑ์การให้คะแนน

นี่คืออย่างน้อยไบต์ชนะ


เราสามารถปฏิบัติตามมาตรฐาน "โปรแกรมหรือฟังก์ชั่น" ปกติได้หรือไม่?
Jonathan Allan

@ Jonanan ทั้งหมดฉันคิดว่าถ้ามันไม่ได้กล่าวถึงอย่างชัดเจนคุณสามารถส่งโปรแกรมหรือฟังก์ชั่น โดยทั่วไปแล้วฉันได้ทิ้งคำถามไว้ในใจโดยไม่มีปัญหา
Digital Trauma

ใช่แน่นอนโปรแกรมหรือฟังก์ชั่นจะทำงานได้ดี
Gryphon


@gryphon คุณแก้ไขสิ่งต่าง ๆ อย่างไร
Foxy

คำตอบ:


9

05AB1E , 3 ไบต์

œÙ¦

ฟังก์ชันที่ปล่อยให้สแต็กมีรายการของแอนนาแกรมอยู่ด้านบน (และเป็นรายการเดียว) ในฐานะที่เป็นโปรแกรมเต็มพิมพ์ตัวแทนของรายการที่

ลองออนไลน์!

อย่างไร?

    - push input
œ   - pop and push a list of all permutations (input appears at the head)
 Ù  - pop and push a list of unique items (sorted by first appearance)
  ¦ - pop and push a dequeued list (removes the occurrence of the input)
    - As a full program: implicit print of the top of the stack

ควรเดา 05AB1E จะสั้นเกินไป
กริฟฟอน

4

Rubyขนาด 45 ไบต์

->x{(x.chars.permutation.map(&:join)-[x])|[]}

ลองออนไลน์!

แม้จะมีในตัวคำว่า "การเปลี่ยนแปลง" นั้นยาวมาก :(


|[]ดูเหมือนไม่จำเป็น?
canhascodez

@ เซทรินไม่ค่อยมาก ข้อมูลจำเพาะบอกว่าควรลบรายการที่ซ้ำกันออก จะสั้นกว่า|[] .uniq
ymbirtt

3

MATL , 7 ไบต์

tY@1&X~

ลองออนไลน์!

คำอธิบาย

t     % Implicitly input a string, say of length n. Duplicate
Y@    % All permutations. May contain duplicates. Gives a 2D char array of 
      % size n!×n with each permutation in a row
1&X~  % Set symmetric difference, row-wise. Automatically removes duplicates.
      % This takes the n!×n char array and the input string (1×n char array)
      % and produces an m×n char array containing the rows that are present 
      % in exactly one of the two arrays
      % Implicitly display

3

pyth , 8 4

-{.p

ทดสอบออนไลน์

  .pQ     # all permutations of the (implicit) input string
 {        # de-duplicate
-    Q    # subtract (implicit) input

สุดยอดงานกอล์ฟ ขอแสดงความยินดีกับการคาดเดาคำตอบที่น่าประทับใจมาก 05AB1E
กริฟฟอน

1
ขออภัย แต่ผลลัพธ์นี้สตริงเดียวกันสองครั้งหากมีตัวละครเดียวกันในการป้อนข้อมูลสองครั้ง โปรดแก้ไข
กริฟฟอน

ขอบคุณสำหรับการแก้ไข น่าเสียดายที่มันเพิ่มจำนวนไบต์ของคุณ
กริฟฟอน

ฉันมาพร้อมกับคำตอบเดียวกัน แต่ก็ลืมลบซ้ำ จิตใจดีคิดเหมือนกัน?
Tornado547

3

Japt , 6 ไบต์

á â kU

ลองออนไลน์!

คำอธิบาย

 á â kU
Uá â kU   // Ungolfed
          // Implicit: U = input string
Uá        // Take all permutations of U.
   â      // Remove duplicates.
     kU   // Remove U itself from the result.
          // Implicit: output resulting array, separated by commas

ขอแสดงความยินดีกับการขโมยชัยชนะ +1
Gryphon

1
@Gryphon ไม่เร็วฉันจะตกตะลึงถ้านี่ไม่ใช่ 3 ไบต์ใน 05AB1E ...
ETHproductions

ฉันไม่ได้ตั้งใจตอนนี้ ยังไม่เหมือนกับว่าฉันกำลังทำเครื่องหมายคุณว่ายอมรับแล้ว
กริฟฟอน

หาก @Dennis ทำสิ่งนี้ใน Jelly อาจเป็น 2 ไบต์ ไม่มีใครสามารถเอาชนะเดนนิสได้
กริฟฟอน

1
การทำนาย 3 ไบต์นั้นดี แต่มี2 แบบ !
Jonathan Allan

3

Haskell, 48 40 ไบต์

import Data.List
a=tail.nub.permutations

ลองออนไลน์!

บันทึกแล้ว 8 ไบต์ขอบคุณที่tailทิปของ Leo


2
คุณสามารถใช้tailแทนdelete xเนื่องจากสตริงต้นฉบับจะมาก่อนเสมอในรายการการเรียงสับเปลี่ยน สิ่งนี้จะช่วยให้คุณเปลี่ยนไปใช้วิธีแก้ปัญหาแบบไร้จุดและจากนั้นไปยังฟังก์ชั่นที่ไม่มีชื่อจะได้รับการบันทึกจำนวนมาก!
Leo

@Leo Great, thanks!
Cristian Lupascu

2

CJam, 8 bytes

l_e!\a-p

Try it online!

Explanation

l    e# Read string from input
_    e# Duplicate
e!   e# Unique permutations. Gives a list of strings
\    e# Swap
a    e# Wrap in a singleton array
-    e# Set difference. This removes the input string
p    e# Pretty print the list

@JonathanAllan Thanks, corrected
Luis Mendo

@Gryphon Well, 7 after Jonathan's very appropripate correction ;-)
Luis Mendo

I have now answered that question.
Gryphon

Umm, the TIO is still outputting the original string for me?
Gryphon

@Gryphon Sorry, it should be working now. I'm clearly too tired for this; going to bed :-P
Luis Mendo

2

Mathematica, 47 bytes

Drop[StringJoin/@Permutations[Characters@#],1]&

I was waiting for one of these, but I was pretty sure it wasn't going to win. Kinda surprised there isn't just one built in.
Gryphon

StringJoin/@Rest@Permutations@Characters@#& is 43 bytes.
jcai

2

Jelly, 4 bytes

Œ!QḊ

A monadic link taking a list of characters and returning a list of lists of characters - all distinct anagrams that are not equal to the input.

Try it online! (the footer forms a program that joins the list by newlines and prints to avoid the otherwise smashed representation).

How?

Œ!QḊ - Link: list of characters     e.g. "text"
Œ!   - all permutations of the list      ["text","tetx","txet","txte","ttex","ttxe","etxt","ettx","extt","extt","ettx","etxt","xtet","xtte","xett","xett","xtte","xtet","ttex","ttxe","tetx","text","txte","txet"]
  Q  - de-duplicate                      ["text","tetx","txet","txte","ttex","ttxe","etxt","ettx","extt","xtet","xtte","xett"]
   Ḋ - dequeue (the first one = input)          ["tetx","txet","txte","ttex","ttxe","etxt","ettx","extt","xtet","xtte","xett"]

Impressive. Will there be an explanation, because I don't Jelly?
Gryphon

Yes, of course!
Jonathan Allan

I took it off ages ago, hence why I had the "(4?)" in the header and the text about removing Y if functions were allowed... I see you just reversed my edit to the question though :/
Jonathan Allan

2

Python 3, 85 76 63 bytes

As a function, and returning strings as list of characters (thanks to @pizzapants184 for telling me it is allowed):

from itertools import*
lambda z:set(permutations(z))-{tuple(z)}

As a function:

from itertools import*
lambda z:map("".join,set(permutations(z))-{tuple(z)})

85 bytes as a full program:

from itertools import*
z=input()
print(*map("".join,set(permutations(z))-{tuple(z)}))

Could be reduced a bit if outputting strings as ('a', 'b', 'c') is allowed (I am not sure it is).


If only python was a golfing language, eh.
Gryphon

1
Outputting as ('a', 'b', 'c') should be fine, this pyth answer does (basically).
pizzapants184

2

Java 8, 245 239 237 bytes

import java.util.*;s->{Set l=new HashSet();p("",s,l);l.remove(s);l.forEach(System.out::println);}void p(String p,String s,Set l){int n=s.length(),i=0;if(n<1)l.add(p);else for(;i<n;p(p+s.charAt(i),s.substring(0,i)+s.substring(++i,n),l));}

-6 bytes thanks to @OlivierGrégoire.

Typical verbose Java.. I see a lot of <10 byte answers, and here I am with 200+ bytes.. XD

Explanation:

Try it here.

import java.util.*;         // Required import for the Set and HashSet

s->{                        // Method (1) with String parameter and no return-type
  Set l=new HashSet();      //  Set to save all permutations in (without duplicates)
  p("",s);                  //  Determine all permutations, and save them in the Set
  l.remove(s);              //  Remove the input from the Set
  l.forEach(                //  Loop over the Set
    System.out::println);   //   And print all the items
}                           // End of method (1)

// This method will determine all permutations, and save them in the Set:
void p(String p,String s,Set l){
  int n=s.length(),         //  Length of the first input String
      i=0;                  //  And a temp index-integer
  if(n<1)                   //  If the length is 0:
    l.add(p);               //   Add the permutation input-String to the Set
  else                      //  Else:
    for(;i<n;               //   Loop over the first input-String
      p(                    //    And do a recursive-call with:
        p+s.charAt(i),      //     Permutation + char
        s.substring(0,i)+s.substring(++i,n),l)
                            //     Everything except this char
      );                    //   End of loop
}                           // End of method (2)

Use l.forEach(System.out::println); instead of your printing loop. Also, I don't like Set being defined at the class level without its enclosing class, a lambda defined no one knows where and a method. This just too much for me. I can understand the imports being separated from the rest, but there is nothing self-contained there, it looks more like a collection of snippets than anything else. I'm sorry, but for the first time in PCG, I give -1 :(
Olivier Grégoire

@OlivierGrégoire First of all thanks for the tip for the forEach. As for the class-level Set, what is the alternative? Post the entire class including main-method? Post the entire class excluding the main-method, but including the class itself, interface and function name?
Kevin Cruijssen

I'd write a full class. That's the smallest self-contained I can find. No need to add the public static void main, just say "the entry method is...". The thing is that your answer as it currently is breaks all the "self-contained" rules. I'm not against binding the rules, but breaking? Yeah, I mind :(
Olivier Grégoire

1
Another idea: pass the Set as parameter? The helper function, I can totally understand that, but it's defining the Set outside of everything that makes me tick.
Olivier Grégoire

@OlivierGrégoire Ok, went for your second suggestion. Indeed makes more sense as well, so I will use that from now on. Thanks for the honest feedback.
Kevin Cruijssen

1

Perl 6,  39  38 bytes

*.comb.permutations».join.unique[1..*]

Try it

*.comb.permutations».join.unique.skip

Try it

Expanded

*               # WhateverCode lambda (this is the parameter)
.comb           # split into graphemes
.permutations\  # get all of the permutations
».join          # join each of them with a hyper method call
.unique         # make sure they are unique
.skip           # start after the first value (the input)

1

C++, 142 bytes

#include<algorithm>
void p(std::string s){auto b=s;sort(begin(s),end(s));do if(s!=b)puts(s.data());while(next_permutation(begin(s),end(s)));}

ungolfed

#include <algorithm>

void p(std::string s)
{
    auto b = s;                    // use auto to avoid std::string
    sort(begin(s), end(s));        // start at first permutation
    do
      if (s != b)                  // only print permutation different than given string
        puts(s.data());
    while (next_permutation(begin(s), end(s))); // move to next permutation
}

1

K (oK), 13 bytes

Solution:

1_?x@prm@!#x:

Try it online!

Explanation:

Evaluation is performed right-to-left.

1_?x@prm@!#x: / the solution
           x: / store input in variable x
          #   / count length of x, #"abc" => 3
         !    / range, !3 => 0 1 2
     prm@     / apply (@) function permutations (prm) to range
   x@         / apply (@) these pumuted indixes back to original input
  ?           / return distinct values
1_            / drop the first one (ie the original input)


โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.