JavaScript (zaktualizowany do pracy ze wszystkimi testami)
Mało znaną prawdą jest to, że w rzeczywistości są cztery 6
, ale jedna zdradziła pozostałych i zamieniła się w formę kodu, aby usunąć je ze światowych cyfr liczb. Oto ta zdradziecka szóstka:
x=prompt(''+
'Enter number');
alert( ( (~x[
'ind'+
'exOf']('666')))?(x
.replace(/666(.*)$/,
function (mat,g){
return '667'+g
['re'+ 'place'
](/./g,0)})):((+x+
1+'').replace(
666,667)));
Oto wyjaśnienie. Najpierw upiększ kod i usuń niepotrzebne rzeczy, takie jak ''+'string'
i ((code))
:
x = prompt('Enter number');
alert(
~x['indexOf']('666')
?
x.replace(/666(.*)$/, function(mat,g) {
return '667' + g['replace'](/./g,0)
})
:
(+x+1+'').replace(666, 667)
);
Konwertuj dziwne notacje (jak ~indexOf
i ['replace']
) na bardziej popularne:
x = prompt('Enter number');
alert(
x.indexOf('666') > -1
?
x.replace(/666(.*)$/, function(mat, g) {
return '667' + g.replace(/./g, 0)
})
:
((parseInt(x) + 1) + '').replace(666, 667)
);
A teraz po prostu zrozum, że algorytm wygląda następująco:
Stara wersja (nie działa 666666666
) :
s='Enter number';x
=prompt( ''+
s);x=+x+
(-~![]);
x=(''+x).replace('666',
666+([][ +[]]+[])
[+[]]['l ength'[
'repla'+ 'ce'](
/ /g,'')]);alert(x)
Aby to zrozumieć, najpierw upiększmy to:
s = 'Enter number';
x = prompt('' + s);
x = +x + (-~![]);
x = ('' + x).replace('666',666+([][+[]]+[])[+[]]['l ength'['repla'+'ce'](/ /g,'')]);
alert(x);
Teraz usuńmy niepotrzebne rzeczy, takie jak '' + string
i 'str' + 'ing'
, usuń niepotrzebną s
zmienną i zmień dziwność jak -~![]
na 1
:
x = prompt('Enter number');
x = +x + 1;
x = ('' + x).replace('666', 666+"undefined"[0]['l ength'['replace'](/ /g,'')]);
alert(x);
'l ength'['replace'](/ /g,'')
jest po prostu "length"
:
x = prompt('Enter number');
x = +x + 1;
x = ('' + x).replace('666', 666+"undefined"[0].length);
alert(x);
I "undefined"[0]
jest "u"
i "u".length
jest 1
:
x = prompt('Enter number');
x = +x + 1;
x = ('' + x).replace('666', 666 + 1);
alert(x);
Teraz skończone! Teraz powinno być dość łatwo to zrozumieć.