Numeri non palindromici


16

Un numero strettamente non palindromico N è un numero che non è un palindromo in nessuna base (nelle basi da 2 a N-2). Questi numeri sono elencati su OEIS

Ad esempio, il numero 19della base 2,3,4,5,6, ... 17 è: 10011, 201, 103, 34, 31, ... 12. Nessuna di queste rappresentazioni è palindromica, quindi il numero è rigorosamente non palindromico.

Per questa sfida, è necessario restituire un valore di verità se il numero è non palindromico, altrimenti un valore di falsa .

  • Si può presumere che il numero passato a te sia maggiore o uguale a 0.
  • Il tuo programma dovrebbe funzionare per valori fino alla dimensione intera delle tue lingue.

Casi test:

Truthy:

0
1
2
3
4
6
11
19
47
53
79
103
389
997
1459

Falsy:

5
7
8
9
10
13
16
43
48
61
62
101
113
211
1361

Questo è un , quindi rendi le tue risposte il più brevi possibile!


2
Sì, l'ho perso. Tuttavia, credo che le risposte a questa sfida possano essere sostanzialmente riutilizzate aggiungendo un result < n-2segno di spunta.
FryAmTheEggman,

Risposte:


6

C, 82 byte

p(n,a,b,c,r){c=0;for(b=1;++b<n-2;c+=r==n)for(a=n,r=0;a>0;a/=b)r=r*b+a%b;return!c;}

Ideone esso!

Spiegazione

Questo codice si inverte nin base be memorizza in r:

for(a=n,r=0;a>0;a/=b)r=r*b+a%b;

Il loop esterno conta il numero di basi da 2 a n-1a cui nè un palindromo.

Se nnon è palindromico, il conteggio sarebbe 1( ndeve essere un palindromo in base n-1).


Avere un voto perché non ho potuto votare due volte la risposta SILOS
Rohan Jhunjhunwala

3
@RohanJhunjhunwala Il miglior motivo per votare di sempre.
Leaky Nun,

@LeakyNun Ma un po 'di voto seriale ...
Erik the Outgolfer


5

SILOS , 206 byte

GOTO e
lbld
c - 1
GOTO c
lble
readIO 
n = i
i - 3
b = i
b + 1
GOTO f
lbla
a = n
r = 0
lblb
m = a
m % b
r * b
r + m
a / b
if a b
r - n
r |
if r d
lblc
c + 1
i - 1
b - 1
lblf
if i a
c / c
c - 1
c |
printInt c

Provalo online!

Porto di mia risposta in C .


Avere due voti uno per ogni risposta, perché non posso votare questo due volte
Rohan Jhunjhunwala

pheraps se è possibile scrivere il codice utilizzando un'istruzione di separazione come "|" puoi trarre vantaggio dalla scrittura di 1 carattere anziché 2 caratteri di \ 13 \ 10 come \ n come dichiarazione di separazione
RosLuP

@RosLuP Sto usando \ r \ n come \ n ora?
Leaky Nun,

non lo so nel tuo sistema, ma copio il programma sopra in un blocco note, piuttosto che salvarlo: la lunghezza di quel file è 241 non 206. quindi qui mi sembra che \ n sia 2 caratteri non 1
RosLuP

@RosLuP Il blocco note ha convertito automaticamente le EOL in \ r \ n.
Leaky Nun,

4

Haskell, 75 68 byte

(a!c)b|a<1=c|x<-c*b+mod a b=div a b!x$b
f n=all((/=n).(n!0))[2..n-2]

3

Gelatina , 9 byte

bRµ⁼"US<3

Provalo online! o verifica tutti i casi di test .

Come funziona

bRµ⁼"US<3  Main link. Argument: n

 R         Range; yield [1, ..., n].
b          Convert n to all bases between 1 and n, yielding a 2D array A>
  µ        Begin a new, monadic chain. Argument: A
     U     Upend; reverse the 1D arrays in A.
   ⁼"      Zipwith equal; yield 1 for each array that matches its inverse.
      S    Sum; add the resulting Booleans.
           If n > 1, the sum will be 2 if n is strictly non-palindromic (it is only
           a palindrome in bases 1 and n - 1), and greater than 2 otherwise.
           For 0 and 1, the sum will be 0 (sum of the empty array) and 1 (only a
           palindrome in base 1); both are less than 2.
       <3  Compare the sum with 3, yielding the desired Boolean.

+1 per il <3.
Leaky Nun,

2

Mathematica, 58 43 byte

!Or@@Table[#==#~IntegerReverse~i,{i,2,#-2}]&

TIL che #~IntegerReverse~iinverte le cifre dell'input quando è scritto nella base i.


2

Pyth, 12 10 byte

Hai salvato due byte con il trucco di Dennis.

>3sm_IjQdS

Provalo online!

Spiegazione:

         S (Q)   Get all the bases we need by building a list from 1 to Q
   m               For all bases d in the bases list:
      jQd           cast Q to base d as a list
    _I              and check to see if the list is palindromic (invariant on reversal)
                  Compile all the results back into a list
  s                Sum the results (a shorter form of any), gives 3 or more for palindromics 
                    (2 is the usual because of bases 1 and Q-1)
>3                 And verify that the sum is greater than three to get non-palindromics

1

JavaScript (ES6), 83 byte

f=(n,i=n-2,g=n=>n<i?[n]:[...g(n/i|0),n%i])=>i<2||`${a=g(n)}`!=a.reverse()&&f(n,i-1)
<input type=number oninput=o.textContent=f(this.value);><pre id=o>


1

Perl6, 110 72 65

my &f={?all(map {{.reverse ne$_}(@(.polymod: $^a xx*))},2..$_-2)}

Impossibile utilizzare la base poiché è rotta per qualsiasi base superiore a 36.

Tentativi precedenti

my &a={$^a??flat($a%$^b,a($a div$b,$b))!!()};my &f=-> $n {?all(map {.reverse ne$_ given @(a($n,$_))},2..$n-2)}
my &f=->\n {?all(map {.reverse ne$_ given @(n.polymod: $_ xx*)},2..n-2)}

Sono riuscito a ridurlo a 59 byte con il mio primo tentativo. Suggerimento suggerimento .polymodcon un infinito elenco di divisori. 1362.polymod: 226 xx *
Brad Gilbert b2gills il

Fai questo 53 e un altro suggerimento {...}e -> $_ {...}sono quasi esattamente gli stessi. Inoltre non è necessario conservare Lambda da nessuna parte in modo da poter rimuovere my &f =.
Brad Gilbert b2gills

1

Brachylog , 14 byte

¬{⟦₆bk∋;?ḃ₍.↔}

Provalo online!

Output tramite successo o errore predicato, che vengono stampati true.o false.eseguiti come programma.

¬{           }    It cannot be shown that
        ?         the input
       ; ḃ₍       in a base
      ∋           which is an element of
  ⟦₆              the range from 1 to the input - 1
    b             without its first element
     k            or its last element
           .      can be unified with both the output variable
            ↔     and its reverse.

0

C, 77 byte

h(n,b,k,z){for(z=0,k=n;z+=k%b,k/=b;z*=b);return b+3>n?1:z==n?0:h(n,++b,0,0);}

esercizio ricorsivo ... cambio (b + 2> = n) con (b + 3> n) senza debug ...

main()
{int  v[]={0,1,2,3, 4, 6,11,19,47,53,79,103,389,997,1459},
  n[]={5,7,8,9,10,13,16,43,48,61,62,101,113,211,1361}, m;
    // 0 1 2 3  4  5  6  7  8  9 10  11  12  13   14
 for(m=0; m<15; ++m)
    printf("%u=%u\n", v[m], h(v[m],2,0,0));
 for(m=0; m<15; ++m)
    printf("%u=%u\n", n[m], h(n[m],2,0,0));
}

/*
 77
 0=1
 1=1
 2=1
 3=1
 4=1
 6=1
 11=1
 19=1
 47=1
 53=1
 79=1
 103=1
 389=1
 997=1
 1459=1
 5=0
 7=0
 8=0
 9=0
 10=0
 13=0
 16=0
 43=0
 48=0
 61=0
 62=0
 101=0
 113=0
 211=0
 1361=0
*/

1
Non vandalizzare i tuoi post.
DJMcMayhem

0

C, 129 byte

f(n,b,k,j){int a[99];for(b=2;b+2<n;++b){for(j=0,k=n;a[j]=k%b,k/=b;++j);for(;k<j&&a[k]==a[j];++k,--j);if(k>=j)return 0;}return 1;}

0

PHP, 68 byte

for($b=$argn;--$b;)strrev($c=base_convert($argn,10,$b))!=$c?:die(1);

prende input da STDIN, esce con 1per falsy, 0per verità. Corri con -R.


Se lo vedo bene, puoi solo risolvere n <39
Jörg Hülsermann il

0

APL (NARS), caratteri 47, byte 94

{⍵≤4:1⋄∼∨/{⍵≡⌽⍵}¨{⍵{(⍺⍴⍨⌊1+⍺⍟⍵)⊤⍵}w}¨2..¯2+w←⍵}

dove {(⍺⍴⍨⌊1+⍺⍟⍵)⊤⍵} sarebbe la funzione di conversione di un omega positivo in cifre numero base alfa e {⍵≡⌽⍵}sarebbe il controllo della funzione palindrome ... test:

  f←{⍵≤4:1⋄∼∨/{⍵≡⌽⍵}¨{⍵{(⍺⍴⍨⌊1+⍺⍟⍵)⊤⍵}w}¨2..¯2+w←⍵}
  f¨0 1 2 3 4 6 11 19 47 53 79 103 389 997 1459
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 
  f¨5 7 8 9 10 13 16 43 48 61 62 101 113 211 1361
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.