Questa sfida è sollevare gli spiriti del nostro mod Alex A. , che di solito ha torto .
Supponiamo di avere un amico di nome Alex che ha bisogno di aiuto con la logica e la matematica di base, in particolare l'equivalenza matematica .
Ti dà un elenco di equazioni del modulo in [variable] = [variable]
cui a [variable]
è sempre una singola lettera maiuscola dalla A alla Z (non una lettera minuscola, non un numero, né altro). C'è una equazione per riga nell'elenco tranne per una singola riga che dice solo therefore
.
Tutte le equazioni sopra therefore
sono premesse , fatti che si presume siano veri. Tutte le equazioni sottostanti therefore
sono proposizioni non verificate, fatti che Alex sta tentando di dedurre dalle premesse e che possono o meno essere vere.
Ad esempio, in questo elenco di equazioni la proposizione conclusiva A = C
sembra essere vera:
A = B
B = C
therefore
A = C
È tuo compito dire ad Alex se tutte le sue proposizioni seguono logicamente dalle premesse fornite. Cioè, devi dire ad Alex se ha torto o ragione nelle sue conclusioni.
Scrivi un programma / funzione che accetta una stringa di un elenco di equazioni come descritto e stampa / ritorna
Alex is right
se tutte le conclusioni seguono logicamente dalle premesse, e in caso contrario output
Alex is wrong
se una conclusione non segue logicamente dai locali.
Vince il codice più breve in byte.
Assicurati di fare attenzione a questi casi:
La variabile è sempre uguale a se stessa. per esempio
B = A therefore A = A X = X
risultati in
Alex is right
.Le variabili con relazioni sconosciute non possono essere considerate uguali. per esempio
P = Q therefore E = R
risultati in
Alex is wrong
.Quando non ci sono equazioni dopo,
therefore
le conclusioni sono vagamente vere . per esempioD = C therefore
e
therefore
entrambi risultano in
Alex is right
.Quando non ci sono equazioni prima
therefore
dell'unica eguaglianza di se stessi può essere dedotta. per esempiotherefore R = R
risulta
Alex is right
, matherefore R = W
risultati in
Alex is wrong
.
Altri esempi
Alex ha sbagliato i casi: (separati da righe vuote)
A = B
C = D
therefore
A = C
A = L
E = X
A = I
S = W
R = O
N = G
therefore
G = N
L = I
R = O
S = A
X = X
X = E
D = K
D = Q
L = P
O = L
M = O
therefore
K = L
A = B
therefore
B = C
Z = A
S = S
therefore
A = Z
A = A
S = A
A = S
Z = A
Z = A
K = L
K = X
therefore
X = P
L = X
L = P
therefore
A = B
B = C
A = C
therefore
A = A
B = B
C = C
D = D
E = E
F = F
G = G
H = H
I = I
J = J
K = K
T = I
L = L
M = M
N = N
O = O
P = P
Q = Q
R = R
S = S
T = T
U = U
V = V
W = W
X = X
Y = Y
Z = Z
A = B
B = C
C = D
D = E
E = F
F = G
G = H
H = I
I = J
J = K
K = L
L = M
M = N
N = O
O = P
P = O
Q = R
R = S
S = T
T = U
U = V
V = W
W = X
X = Y
Y = Z
therefore
A = Z
therefore
C = D
T = Y
A = Z
P = Q
therefore
E = R
therefore
R = W
Alex ha ragione:
H = J
therefore
J = H
K = L
K = X
therefore
L = X
C = B
B = A
therefore
A = B
K = L
K = X
K = P
therefore
L = X
L = P
X = P
A = Y
Y = Q
Q = O
therefore
O = Y
O = A
C = C
therefore
C = C
A = B
B = A
therefore
A = B
B = A
A = B
B = C
C = D
therefore
A = A
A = B
A = C
A = D
B = A
B = B
B = C
B = D
C = A
C = B
C = C
C = D
D = A
D = B
D = C
D = D
therefore
A = A
B = B
C = C
D = D
E = E
F = F
G = G
H = H
I = I
J = J
K = K
L = L
M = M
N = N
O = O
P = P
Q = Q
R = R
S = S
T = T
U = U
V = V
W = W
X = X
Y = Y
Z = Z
D = I
F = H
J = M
therefore
M = J
D = I
H = F
A = B
B = C
C = D
D = E
E = F
F = G
G = H
H = I
I = J
J = K
K = L
L = M
M = N
N = O
O = P
P = Q
Q = R
R = S
S = T
T = U
U = V
V = W
W = X
X = Y
Y = Z
therefore
Z = A
F = R
G = I
W = L
A = B
B = C
therefore
A = C
B = A
therefore
A = A
X = X
P = P
C = G
M = C
therefore
D = C
therefore
therefore
therefore
R = R
therefore\nTABS < SPACES
->Alex is right
Alex is wrong
Verifica tutti i casi di test.