| Bytes | Lang | Time | Link |
|---|---|---|---|
| 087 | APLNARS | 250815T045403Z | Rosario |
| 008 | Nekomata | 230817T021347Z | alephalp |
| 007 | Vyxal | 210703T023406Z | emanresu |
| 007 | Thunno 2 | 230815T191819Z | The Thon |
| 070 | Factor | 210703T042158Z | chunes |
| 008 | Husk | 201116T083534Z | Dominic |
| 010 | Stax | 201116T054542Z | Razetime |
| 009 | Japt | 190409T120214Z | Shaggy |
| 130 | APLNARS | 190207T101155Z | user5898 |
| 011 | Brachylog | 190409T071538Z | Unrelate |
| 099 | PowerShell | 190405T114436Z | mazzy |
| 014 | Japt | 190207T152855Z | Kamil Dr |
| 027 | APL Dyalog Classic | 190207T041413Z | lirtosia |
| 009 | Jelly | 180213T145906Z | Erik the |
| 069 | Coconut | 180213T164131Z | ovs |
| 040 | Perl | 180213T152543Z | Ton Hosp |
| 010 | 05AB1E | 171025T142521Z | Magic Oc |
| 107 | JavaScript ES6 | 180213T152211Z | Arnauld |
| nan | 180213T151452Z | Brad Gil | |
| 199 | Java 8 | 171025T081024Z | Kevin Cr |
| 027 | Retina | 171025T082757Z | Martin E |
| nan | 110603T114028Z | Lalith | |
| 127 | Scala | 120410T131552Z | bkuder |
| 083 | Python | 120404T201600Z | boothby |
| 081 | Clojure | 170102T231932Z | NikoNyrh |
| 120 | JavaScript ES6 | 170103T001111Z | Luke |
| 024 | J | 110212T013156Z | J B |
| 112 | Perl | 120405T164221Z | ardnew |
| 078 | Q | 120404T114303Z | tmartin |
| 104 | Windows PowerShell | 110130T125646Z | Joey |
| 092 | Prolog | 110212T155927Z | J B |
| 048 | J | 110212T131155Z | Eelvex |
| 088 | Haskell 98 | 110210T212027Z | J B |
| 048 | Golfscript | 110211T110137Z | roobs |
| 097 | Ruby | 110130T081352Z | Nemo157 |
| 153 | Haskell | 110129T221516Z | Jonathan |
| 124 | Python | 110129T164051Z | Alexandr |
| 136 | Python | 110129T125018Z | JPvdMerw |
APL(NARS), 87 chars
s←{(''≡w)∨⍬≡w←⍵:⍬⋄({w[⍵]}¨⍳¨⍳≢w),∇1↓⍵}⋄p←{1≥≢⍵:0⋄⍵≡⌽⍵}⋄f←{1≥≢⍵:''⋄0=∨/b←p¨k←s ⍵:''⋄b/k}
s is the function that find the sublists, p is the boolean function return 1 on lists palindrome, 0 otherwise, f is the function of exercise.
This for find substring apply one algo that is not O(2^n) but O(nn) where n is the lenght of the array. There would be a way of build contigues partitions usind one algo O(nn), useful for this and other exercises.
test:
f '3'
┌0┐
│ │
└¯┘
f 'this'
┌0┐
│ │
└¯┘
f 3 3
┌1─────┐
│┌2───┐│
││ 3 3││
│└~───┘2
└∊─────┘
f '33'
┌1────┐
│┌2──┐│
││ 33││
│└───┘2
└∊────┘
f'12131331'
┌5─────────────────────────────────┐
│┌3───┐ ┌3───┐ ┌3───┐ ┌4────┐ ┌2──┐│
││ 121│ │ 131│ │ 313│ │ 1331│ │ 33││
│└────┘ └────┘ └────┘ └─────┘ └───┘2
└∊─────────────────────────────────┘
f'121121'
┌5────────────────────────────────────┐
│┌3───┐ ┌6──────┐ ┌4────┐ ┌2──┐ ┌3───┐│
││ 121│ │ 121121│ │ 2112│ │ 11│ │ 121││
│└────┘ └───────┘ └─────┘ └───┘ └────┘2
└∊────────────────────────────────────┘
f'333'
┌3─────────────────┐
│┌2──┐ ┌3───┐ ┌2──┐│
││ 33│ │ 333│ │ 33││
│└───┘ └────┘ └───┘2
└∊─────────────────┘
f'33'
┌1────┐
│┌2──┐│
││ 33││
│└───┘2
└∊────┘
Nekomata, 8 bytes
qNᵗz:↔=ũ
qNᵗz:↔=ũ
q Find a contiguous subsequence of the input
N Check that it is nonempty
ᵗz Check that it is not a singleton
: Duplicate
↔ Reverse
= Check equality
ũ Remove duplicate results
Vyxal, 7 bytes
ǎU~Ḣ'Ḃ=
-1 thanks to lyxal
U # Unique
ǎ # Substrings
~ # Where
Ḣ # Length > 1
' # And
Ḃ= # Is palindromic
Thunno 2, 7 bytes
FœḣæḲ:U
Explanation
FœḣæḲ:U # Implicit input
F # All substrings of the input
œḣ # Filter by length > 1
æḲ: # Only keep palindromes
U # Uniquify this list
# Implicit output
Factor, 70 bytes
[ all-subseqs [ length 1 > ] filter [ dup reverse = ] filter members ]
Having the two filters is actually shorter than having a single filter with some kind of and logic, or applying a single filter to two quotations with bi@.
all-subseqsGet all subsequences of the input.[ length 1 > ] filterTake those with a length greater than one.[ dup reverse = ] filterTake the palindromes.membersRemove duplicates.
Using locals ties the byte count:
[ all-subseqs [| s | s length 1 > s s reverse = and ] filter members ]
Husk, 11 9 8 bytes
Edit: -1 byte thanks to Razetime
uftfS=↔Q
uftfS=↔Q
u # unique elements of
Q # all contiguous subsets of input
f # after filtering to include only those that
t # are not a single digit/character
f # and then filtering to include only those that
S=↔ # are equal to themselves reversed
Stax, 10 bytes
îmmW┴√▄○○←
I couldn't find an is-palindrome function. With that this'd probably be much shorter.
Japt, 9 bytes
ã â fÅfêU
ã â fÅfêU :Implicit input of string
ã :Substrings
â :Deduplicate
f :Filter elements that return truthy
Å : Slice off first character
f :Filter elements that return true
êU : Test for palindrome
APL(NARS), 65 chars, 130 bytes
{0=≢m←∪b/⍨{1≥≢⍵:0⋄∧/⍵=⌽⍵}¨b←↑∪/{x[⍵;]⊂y}¨⍳≢x←11 1‼k k⊢k←≢y←⍵:⍬⋄m}
test:
r←{0=≢m←∪b/⍨{1≥≢⍵:0⋄∧/⍵=⌽⍵}¨b←↑∪/{x[⍵;]⊂y}¨⍳≢x←11 1‼k k⊢k←≢y←⍵:⍬⋄m}
o←⎕fmt
o r '1234442'
┌2───────────┐
│┌2──┐ ┌3───┐│
││ 44│ │ 444││
│└───┘ └────┘2
└∊───────────┘
o r '3333'
┌3───────────────────┐
│┌4────┐ ┌3───┐ ┌2──┐│
││ 3333│ │ 333│ │ 33││
│└─────┘ └────┘ └───┘2
└∊───────────────────┘
o r "12131331"
┌5─────────────────────────────────┐
│┌4────┐ ┌3───┐ ┌2──┐ ┌3───┐ ┌3───┐│
││ 1331│ │ 121│ │ 33│ │ 313│ │ 131││
│└─────┘ └────┘ └───┘ └────┘ └────┘2
└∊─────────────────────────────────┘
o r '1234'
┌0─┐
│ 0│
└~─┘
{0=≢m←∪b/⍨{1≥≢⍵:0⋄∧/⍵=⌽⍵}¨b←↑∪/{x[⍵;]⊂y}¨⍳≢x←11 1‼k k⊢k←≢y←⍵:⍬⋄m}
y←⍵ assign the argument to y (because it has to be used inside other function)
x←11 1‼k k⊢k←≢y assign the lenght of y to k, call the function 11 1‼k k
that seems here find all partition of 1 2 ..k
{x[⍵;]⊂y}¨⍳≢ make partition of arg ⍵ using that set x
∪/ set union with precedent to each element of partition y (i don't know if this is ok)
b←↑ get first assign to b
{1≥≢⍵:0⋄∧/⍵=⌽⍵}¨ for each element of b return 1 only if the argument ⍵ is such that
"∧/⍵=⌽⍵" ⍵ has all subset palindrome, else return 0
b/⍨ get the elements in b for with {1≥≢⍵:0⋄∧/⍵=⌽⍵} return 1
m←∪ make the set return without ripetition element, and assign to m
0=≢ if lenght of m is 0 (void set) than
:⍬⋄m return ⍬ else return m
it someone know better why, and can explain this better, free of change this all... I am not so certain of this code, possible if test examples are more numerous, something will go wrong...
Brachylog, 11 bytes
{s.l>1∧.↔}ᵘ
(The header in the link is broken at the time of posting, so here's the predicate (function-equivalent in Brachylog) on only the first test case, with a w at the end to actually print the output.)
The output is
{ }ᵘ a list containing every possible unique
s. substring of
the input
l the length of which
> is greater than
1 one
∧ and
. which
↔ reversed
is itself. (implicit output within the inline sub-predicate)
I feel like there's a shorter way to check that the length is greater than 1. (If it didn't filter out trivial palindromes, it would just be {s.↔}ᵘ.)
PowerShell, 99 bytes
$args|% t*y|%{$s+=$_
0..$n|%{if($n-$_-and($t=-join$s[$_..$n])-eq-join$s[$n..$_]){$t}}
$n++}|sort -u
Less golfed:
$args|% toCharArray|%{
$substring+=$_
0..$n|%{
if( $n-$_ -and ($temp=-join$substring[$_..$n]) -eq -join$substring[$n..$_] ){
$temp
}
}
$n++
}|sort -Unique
Japt, 14 bytes
Êò2@ãX fêSÃc â
Explanation:
Êò2 #Get the range [2...length(input)]
@ Ã #For each number in that range:
ãX # Get the substrings of the input with that length
fêS # Keep only the palindromes
c #Flatten
â #Keep unique results
APL (Dyalog Classic), 27 bytes
{∪⍵/⍨≡∘⌽¨⍨⍵}∘⊃(,/1↓⍳∘≢,/¨⊂)
{∪⍵/⍨≡∘⌽¨⍨⍵}∘⊃(,/1↓⍳∘≢,/¨⊂) Monadic train:
⊂ Enclose the input, ⊂'12131331'
⍳∘≢ Range from 1 to length of input
⍳∘≢,/¨⊂ List of list of substrings of each length
1↓ Remove the first list (length-1 substrings)
⊃ ,/ Put the rest of the substrings into a single list.
{∪⍵/⍨≡∘⌽¨⍨⍵} To the result, apply this function which
keeps all palindromes from a list:
≡∘⌽¨⍨⍵ Boolean value of whether each (¨) string in argument
≡∘⌽ ⍨ is equal to its own reverse
⍵/⍨ Replicate (filter) argument by those values.
This yields the length >1 palindromes.
∪ Remove duplicates from the list of palindromes.
Coconut, 69 bytes
def f(s)=s and{s*(s[::-1]==s>""<s[1:])}-{""}|f(s[1:])|f(s[:-1])or s{}
Python 2, 73 bytes
f=lambda s:s and{s*(s[::-1]==s>""<s[1:])}-{""}|f(s[1:])|f(s[:-1])or set()
Perl, 43 40 bytes
Includes +1 for n
perl -nE 's/(?=((.)((?1)|.?)\2)(?!.*\1))/say$1/eg' <<< 12131331
JavaScript (ES6), 107 bytes
Returns a Set.
s=>new Set((g=(s,r=[...s].reverse().join``)=>s[1]?(r==s?[s]:[]).concat(g(s.slice(1)),g(r.slice(1))):[])(s))
Test cases
let f =
s=>new Set((g=(s,r=[...s].reverse().join``)=>s[1]?(r==s?[s]:[]).concat(g(s.slice(1)),g(r.slice(1))):[])(s))
console.log([...f('12131331').values()])
console.log([...f('3333').values()])
Perl 6, 35 32 bytes
{unique ~«m:ex/(.+).?<{$0.flip}>/}
{set ~«m:ex/(.+).?<{$0.flip}>/}
Expanded:
{ # bare block lambda with implicit parameter 「$_」
set # turn into a Set object (ignores duplicates)
~«\ # stringify 「~」 all of these 「«」 (possibly in parrallel)
# otherwise it would be a sequence of Match objects
m # match
:exhaustive # in every way possible
/
( .+ ) # at least one character 「$0」
.? # possibly another character (for odd sized sub-palindromes)
<{ $0.flip }> # match the reverse of the first grouping
/
}
Java 8, 202 201 199 bytes
import java.util.*;s->{Set r=new HashSet();String x;for(int l=s.length(),i=0,j;i<l;i++)for(j=i;++j<=l;)if((x=s.substring(i,j)).contains(new StringBuffer(x).reverse())&x.length()>1)r.add(x);return r;}
If a function isn't allowed and a full program is required, it's 256 255 253 bytes instead:
import java.util.*;interface M{static void main(String[]a){Set r=new HashSet();String x;for(int l=a[0].length(),i=0,j;i<l;i++)for(j=i;++j<=l;)if((x=a[0].substring(i,j)).contains(new StringBuffer(x).reverse())&x.length()>1)r.add(x);System.out.print(r);}}
Explanation:
import java.util.*; // Required import for Set and HashSet
s->{ // Method with String parameter and Set return-type
Set r=new HashSet(); // Return-Set
String t; // Temp-String
for(int l=s.length(), // Length of the input-String
i=0,j; // Index-integers (start `i` at 0)
i<l;i++) // Loop (1) from `0` to `l` (exclusive)
for(j=i;++j<=l;) // Inner loop (2) from `i+1` to `l` (inclusive)
if((t=s.substring(i,j)
// Set `t` to the substring from `i` to `j` (exclusive)
).contains(new StringBuffer(t).reverse())
// If this substring is a palindrome,
&t.length()>1) // and it's length is larger than 1:
r.add(t); // Add the String to the Set
// End of inner loop (2) (implicit / single-line body)
// End of loop (1) (implicit / single-line body)
return r; // Return the result-Set
} // End of method
Retina, 34 27 bytes
&@!`(.)+.?(?<-1>\1)+(?(1)^)
The test suite needs an M because it is followed by another stage to insert empty lines between test cases.
Explanation
&@!`(.)+.?(?<-1>\1)+(?(1)^)
Print (!) all unique (@), overlapping (&) matches of the regex (.)+.?(?<-1>\1)+(?(1)^). This matches a palindrome of length 2 or more using balancing groups. There's a caveat to the "all overlapping matches" part: we can get at most one match per starting position. However, if two palindromes of different length begin at the same position, the shorter palindrome will appear again at the end of the longer palindrome. And since the greediness of + prioritises longer matches, we're getting all palindromes anyway.
Scala 156 170
object o extends App{val l=args(0).length-2;val r=for(i<-0 to l;j<-i to l;c=args(0).substring(i,j+2);if(c==c.reverse))yield c;print(r.toSet.mkString(" "))}
object o{def main(s:Array[String]){val l=s(0).length-2;val r=for(i<-0 to l;j<-i to l;c=s(0).substring(i,j+2);if(c==c.reverse)) yield c;println(r.distinct.mkString(" "))}}
Scala 127
object p extends App{val s=args(0);print(2.to(s.size).flatMap(s.sliding(_).toSeq.filter(c=>c==c.reverse)).toSet.mkString(" "))}
To keep this an apples to apples comparison with the other Scala answer, I also made mine an object that extends App. Rather than iterate the input string manually and use substring, I leveraged sliding() to create a sequence of all the substrings for me.
Python, 83 102 chars
s=lambda t:(t[1:]or())and(t,)*(t==t[::-1])+s(t[1:])+s(t[:-1])
print set(s(input()))
The phrase (t[1:]or())and... is equivalent to (...)if t[1:]else() and saves one character! I'm overly proud of this, given the savings.
Example:
python x
"51112232211161"
set(['11', '22', '11122322111', '161', '111', '112232211', '1223221', '22322', '232'])
Clojure, 81 bytes
#(set(for[i(range 2(+(count %)1))p(partition i 1 %):when(=(reverse p)(seq p))]p))
for was a perfect match here :) Could use :when(=(reverse p)p) if input was a list of characters OR a full string didn't count as a palindrome, actually in that case the max range of i could be (count %) as well.
Most compact case for reference:
#(set(for[i(range 2(count %))p(partition i 1 %):when(=(reverse p)p)]p))
JavaScript (ES6), 120 bytes
a=>{for(b=0,c=d=a.length,e=[];b<d;--c<b+2?(b++,c=d):1)(f=a.slice(b,c))==f.split``.reverse().join``&&e.push(f);return e}
This function takes a string as input and outputs an array.
J, 24 31 40
~.(#~(1<#*]-:|.)&>),<\\.
Sample use:
~.(#~(1<#*]-:|.)&>),<\\. '12131331'
┌───┬───┬───┬────┬──┐
│121│131│313│1331│33│
└───┴───┴───┴────┴──┘
~.(#~(1<#*]-:|.)&>),<\\. '3333'
┌──┬───┬────┐
│33│333│3333│
└──┴───┴────┘
Take that, GolfScript!
Perl, 112
$_=<>;chop;s/./$&$' /g;
map{/../&&$_ eq reverse&&$h{$_}++}split/ /
for grep{s/./$`$& /g}split/ /;
print for keys %h
Q, 78
{a::x;(?)(,/)b@'(&:')({x~(|:)x}'')b:-1_1_'({(sublist[;a]')x,'1+c}')c::(!)(#)a}
usage
q){a::x;(?)(,/)b@'(&:')({x~(|:)x}'')b:-1_1_'({(sublist[;a]')x,'1+c}')c::(!)(#)a}"12131331"
"121"
"131"
"313"
"1331"
"33"
q){a::x;(?)(,/)b@'(&:')({x~(|:)x}'')b:-1_1_'({(sublist[;a]')x,'1+c}')c::(!)(#)a}"3333"
"33"
"333"
"3333"
Windows PowerShell, 104 109 111
0..($l=($s="$input").length-1)|%{($a=$_)..$l|%{-join$s[$a..$_]}}|sort -u|?{$_[1]-and$_-eq-join$_[$l..0]}
This expects the input on stdin and will throw all found palindromes one per line on stdout:
PS Home:\SVN\Joey\Public\SO\CG183> '12131331'| .\subp.ps1
33
121
131
313
1331
(When run from cmd it becomes echo 12131331|powershell -file subp.ps1 – it's just that $input takes a slightly different meaning depending on how the script was called, but it can be stdin, just not interactively.)
2011-01-30 13:57 (111) – First attempt.
2011-01-30 13:59 (109) – Inlined variable declaration.
2011-06-02 13:18 (104) – Redone substring finding by joining a char array instead of calling .Substring() and inlined a bit more.
Prolog, 92
f(S,P):-append([_,X,_],S),X=[_,_|_],reverse(X,X),atom_codes(P,X).
p(S,R):-setof(P,f(S,P),R).
Sample use:
?- p("12131331",R).
R = ['121', '131', '1331', '313', '33'].
?- p("3333",R).
R = ['33', '333', '3333'].
J, 48
f=:,@:".
h=:\\.
~.(#~10&<)((]h-:"0&f|.h)#[:f]h)
eg
~.(#~10&<)((]h-:"0&f|.h)#[:f]h) '12131331'
121 131 313 1331 33
Haskell 98, 88 91 96
import List
main=interact$show.filter(\x->length x>1&&x==reverse x).nub.(tails=<<).inits
Golfscript, 48 characters
subpalindrome.gs
{,}{(;}/{{,}{);}/}%{+}*{.,1>\.-1%=*},.&{`}%", "*
Usage:
echo "12131331" | ruby golfscript.rb subpalindrome.gs
The first operation {,}{(;}/ turns a string into a list of trailing-substrings. A similar leading-substrings transform is then mapped over the result. Then flatten with {+}*, filter for palindromes using the predicate .,1>\.-1%=*, grab unique values with .&, then pretty print.
It would be neater to extract the trailing-substrings transform as a block and reuse it as a replacement for leading-substrings after reversing each trailing substring, but I can't figure out a succinct way of doing that.
Ruby - 126 102 97 characters
s=gets
*m=*0..s.size
puts m.product(m).map{|h,j|(c=s[h,j+1]).size>1&&c==c.reverse ? c:0}.uniq-[0]
Haskell - 170, 153
import Data.List
import Data.Set
p a=fromList$[show x|x<-subsequences a,x==reverse x,length x>1]
main=getLine>>=(\x->putStrLn$intercalate", "$toList$p x)
Python 124
r=raw_input()
l=range(len(r))
print', '.join(set('"'+r[i:j+1]+'"'for i in l for j in l if i<j and r[i:j+1]==r[i:j+1][::-1]))
Python - 138 136
This code does not duplicate sub-palindromes.
r=raw_input()
i,l=0,len(r)
j=l
a=[]
while i<l-1:
t=r[i:j];j-=1
if t==t[::-1]:a+=['"'+t+'"']
if j<i+2:i+=1;j=l
print", ".join(set(a))