R, 1 byte
!
Exemplo:
> !c(TRUE, FALSE)
[1] FALSE TRUE
Também funciona com entrada numérica:
> !c(1, 0)
[1] FALSE TRUE
Também não estamos restritos a matrizes unidimensionais. Vamos criar uma matriz e preenchê-la aleatoriamente com 0s e 1s:
> mat = matrix(rbinom(16, 1, .5), ncol=4)
> mat
[,1] [,2] [,3] [,4]
[1,] 0 1 1 1
[2,] 0 1 0 0
[3,] 0 0 0 0
[4,] 1 1 1 0
Podemos inverter isso com a mesma facilidade:
> !mat
[,1] [,2] [,3] [,4]
[1,] TRUE FALSE FALSE FALSE
[2,] TRUE FALSE TRUE TRUE
[3,] TRUE TRUE TRUE TRUE
[4,] FALSE FALSE FALSE TRUE
Podemos continuar fazendo isso para números arbitrários de dimensões. Aqui está um exemplo em uma matriz quadridimensional:
> bigarray = array(rbinom(32, 1, 0.5), dim=c(2,2,2,2))
> bigarray
, , 1, 1
[,1] [,2]
[1,] 0 0
[2,] 0 0
, , 2, 1
[,1] [,2]
[1,] 1 0
[2,] 0 0
, , 1, 2
[,1] [,2]
[1,] 0 1
[2,] 0 1
, , 2, 2
[,1] [,2]
[1,] 1 0
[2,] 1 1
> !bigarray
, , 1, 1
[,1] [,2]
[1,] TRUE TRUE
[2,] TRUE TRUE
, , 2, 1
[,1] [,2]
[1,] FALSE TRUE
[2,] TRUE TRUE
, , 1, 2
[,1] [,2]
[1,] TRUE FALSE
[2,] TRUE FALSE
, , 2, 2
[,1] [,2]
[1,] FALSE TRUE
[2,] FALSE FALSE
Receio que não funcione para personagens.
> !"Hello world"
Error in !"Hello world" : Invalid argument type.
0
(falso, todos os 0 bits) e-1
(verdadeiro, todos os 1 bits)?