Skip to content

Instantly share code, notes, and snippets.

@adamori
Created March 7, 2023 13:01
Show Gist options
  • Save adamori/f9724dbbbe1c7dee4dcad4991e8fabd4 to your computer and use it in GitHub Desktop.
Save adamori/f9724dbbbe1c7dee4dcad4991e8fabd4 to your computer and use it in GitHub Desktop.
Разработать функцию, реализующую логическую операцию «штрих Шеффера». С ее помощью построить таблицу истинности для этой операции.
def schaeffers_stroke(a, b):
    return not (a and b)
a b f
0 0 1
0 1 1
1 0 1
1 1 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment