From 6257305fb631e4997b3934964c9c7e5268bf8528 Mon Sep 17 00:00:00 2001 From: eduard ermakov Date: Fri, 14 Jul 2023 18:15:56 +0300 Subject: [PATCH] =?UTF-8?q?=D0=97=D0=B0=D0=B3=D1=80=D1=83=D0=B6=D0=B0?= =?UTF-8?q?=D1=8E=20=D0=BF=D0=B5=D1=80=D0=B2=D1=8B=D0=B9=20=D1=8D=D1=82?= =?UTF-8?q?=D0=B0=D0=BF=20=D1=80=D0=B0=D0=B7=D1=80=D0=B0=D0=B1=D0=BE=D1=82?= =?UTF-8?q?=D0=BA=D0=B8=20=D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8=D0=B8=20?= =?UTF-8?q?=D1=82=D0=B5=D1=81=D1=82=D0=B8=D1=80=D0=BE=D0=B2=D0=B0=D0=BD?= =?UTF-8?q?=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HNC/Excercises/072023 Test function/.idea/.gitignore | 3 +++ .../072023 Test function/.idea/072023 Test function.iml | 8 ++++++++ .../.idea/inspectionProfiles/profiles_settings.xml | 6 ++++++ HNC/Excercises/072023 Test function/.idea/misc.xml | 4 ++++ HNC/Excercises/072023 Test function/.idea/modules.xml | 8 ++++++++ HNC/Excercises/072023 Test function/.idea/vcs.xml | 6 ++++++ HNC/Excercises/072023 Test function/main.py | 6 ++++++ HNC/Excercises/072023 Test function/main.py~ | 6 ++++++ 8 files changed, 47 insertions(+) create mode 100644 HNC/Excercises/072023 Test function/.idea/.gitignore create mode 100644 HNC/Excercises/072023 Test function/.idea/072023 Test function.iml create mode 100644 HNC/Excercises/072023 Test function/.idea/inspectionProfiles/profiles_settings.xml create mode 100644 HNC/Excercises/072023 Test function/.idea/misc.xml create mode 100644 HNC/Excercises/072023 Test function/.idea/modules.xml create mode 100644 HNC/Excercises/072023 Test function/.idea/vcs.xml create mode 100644 HNC/Excercises/072023 Test function/main.py create mode 100644 HNC/Excercises/072023 Test function/main.py~ diff --git a/HNC/Excercises/072023 Test function/.idea/.gitignore b/HNC/Excercises/072023 Test function/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/HNC/Excercises/072023 Test function/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/HNC/Excercises/072023 Test function/.idea/072023 Test function.iml b/HNC/Excercises/072023 Test function/.idea/072023 Test function.iml new file mode 100644 index 0000000..d0876a7 --- /dev/null +++ b/HNC/Excercises/072023 Test function/.idea/072023 Test function.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/HNC/Excercises/072023 Test function/.idea/inspectionProfiles/profiles_settings.xml b/HNC/Excercises/072023 Test function/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/HNC/Excercises/072023 Test function/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/HNC/Excercises/072023 Test function/.idea/misc.xml b/HNC/Excercises/072023 Test function/.idea/misc.xml new file mode 100644 index 0000000..d56657a --- /dev/null +++ b/HNC/Excercises/072023 Test function/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/HNC/Excercises/072023 Test function/.idea/modules.xml b/HNC/Excercises/072023 Test function/.idea/modules.xml new file mode 100644 index 0000000..b048ae6 --- /dev/null +++ b/HNC/Excercises/072023 Test function/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/HNC/Excercises/072023 Test function/.idea/vcs.xml b/HNC/Excercises/072023 Test function/.idea/vcs.xml new file mode 100644 index 0000000..c2365ab --- /dev/null +++ b/HNC/Excercises/072023 Test function/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/HNC/Excercises/072023 Test function/main.py b/HNC/Excercises/072023 Test function/main.py new file mode 100644 index 0000000..87e409b --- /dev/null +++ b/HNC/Excercises/072023 Test function/main.py @@ -0,0 +1,6 @@ +def verify(message, expected, actual): + print(message) + if actual != expected: + print("FAILED") + else: + print("PASSED") \ No newline at end of file diff --git a/HNC/Excercises/072023 Test function/main.py~ b/HNC/Excercises/072023 Test function/main.py~ new file mode 100644 index 0000000..87e409b --- /dev/null +++ b/HNC/Excercises/072023 Test function/main.py~ @@ -0,0 +1,6 @@ +def verify(message, expected, actual): + print(message) + if actual != expected: + print("FAILED") + else: + print("PASSED") \ No newline at end of file