こういうやつ
not (a or b or c) <=> (not a) and (not b) and (not c)
not (a and b and c) <=> (not a) or (not b) or (not c)
すぐ忘れるよね。ぼくは忘れる。
O'Reillyの『リーダブルコード』に簡単な覚え方が載っていた。
notを分配してand/orを反転する
(逆方向は「notをくくりだす」)
Go to list of users who liked
More than 5 years have passed since last update.
こういうやつ
not (a or b or c) <=> (not a) and (not b) and (not c)
not (a and b and c) <=> (not a) or (not b) or (not c)
すぐ忘れるよね。ぼくは忘れる。
O'Reillyの『リーダブルコード』に簡単な覚え方が載っていた。
notを分配してand/orを反転する
(逆方向は「notをくくりだす」)
Register as a new user and use Qiita more conveniently
Go to list of users who liked