From c2e8b14668dccb8a4280b62b9bc64c8088aec594 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0smet=20=C3=96zkan?= <103835646+isomensla@users.noreply.github.com> Date: Tue, 24 Feb 2026 11:47:04 +0300 Subject: [PATCH 1/6] =?UTF-8?q?Add=20student=20information=20for=20Ismet?= =?UTF-8?q?=20=C3=96zkan?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Week01/info_ismet_ozkan | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Week01/info_ismet_ozkan diff --git a/Week01/info_ismet_ozkan b/Week01/info_ismet_ozkan new file mode 100644 index 00000000..86a6dd62 --- /dev/null +++ b/Week01/info_ismet_ozkan @@ -0,0 +1,2 @@ +student_id = "220315089" +full_name = "ismet özkan" From 63e947372ac5140dfdcbc8483b09583299c487cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0smet=20=C3=96zkan?= <103835646+isomensla@users.noreply.github.com> Date: Tue, 24 Feb 2026 11:51:10 +0300 Subject: [PATCH 2/6] Update checklist items to checked in PR template --- pull_request_template.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pull_request_template.md b/pull_request_template.md index 252a7f4b..cf3ff2bf 100644 --- a/pull_request_template.md +++ b/pull_request_template.md @@ -1,10 +1,10 @@ ## Describe your changes ## Checklist -- [ ] I have read the [CONTRIBUTING] -- [ ] I have performed a self-review of my own code -- [ ] I have run the code locally and it works as expected -- [ ] I have commented my code, particularly in hard-to-understand areas +- [x] I have read the [CONTRIBUTING] +- [x] I have performed a self-review of my own code +- [x] I have run the code locally and it works as expected +- [x] I have commented my code, particularly in hard-to-understand areas ## Screenshots (if appropriate) From aa5b10cb9a5d7533a9a387dbff7b47018b8e36ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0smet=20=C3=96zkan?= <103835646+isomensla@users.noreply.github.com> Date: Tue, 24 Feb 2026 11:55:07 +0300 Subject: [PATCH 3/6] Delete Week01/info_ismet_ozkan --- Week01/info_ismet_ozkan | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 Week01/info_ismet_ozkan diff --git a/Week01/info_ismet_ozkan b/Week01/info_ismet_ozkan deleted file mode 100644 index 86a6dd62..00000000 --- a/Week01/info_ismet_ozkan +++ /dev/null @@ -1,2 +0,0 @@ -student_id = "220315089" -full_name = "ismet özkan" From 76bc6bd17ce4285d20f590255cb8f3ee4513d8ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0smet=20=C3=96zkan?= <103835646+isomensla@users.noreply.github.com> Date: Tue, 24 Feb 2026 11:57:39 +0300 Subject: [PATCH 4/6] =?UTF-8?q?Add=20student=20information=20for=20=C4=B0s?= =?UTF-8?q?met=20=C3=96zkan?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Week01/info_ismet_ozkan.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Week01/info_ismet_ozkan.py diff --git a/Week01/info_ismet_ozkan.py b/Week01/info_ismet_ozkan.py new file mode 100644 index 00000000..1e0ef8ec --- /dev/null +++ b/Week01/info_ismet_ozkan.py @@ -0,0 +1,2 @@ +student_id = "220315089" +full_name = "İsmet Özkan" From a777f13a838a54f0e15fa2afb480fccc020b2493 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0smet=20=C3=96ZKAN?= <103835646+isomensla@users.noreply.github.com> Date: Tue, 24 Mar 2026 22:24:44 +0300 Subject: [PATCH 5/6] Add variables of different types in types_ismet_ozkan.py --- Week02/types_ismet_ozkan.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Week02/types_ismet_ozkan.py diff --git a/Week02/types_ismet_ozkan.py b/Week02/types_ismet_ozkan.py new file mode 100644 index 00000000..55a125cf --- /dev/null +++ b/Week02/types_ismet_ozkan.py @@ -0,0 +1,4 @@ +my_int = 50 +my_float = 43.2 +my_bool = True +my_complex = 15j From 63accddc75ccccd718fc0b78ee2e76243f34b781 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0smet=20=C3=96ZKAN?= <103835646+isomensla@users.noreply.github.com> Date: Tue, 24 Mar 2026 22:26:03 +0300 Subject: [PATCH 6/6] Add function to calculate pyramid height from blocks --- Week03/pyramid_ismet_ozkan.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Week03/pyramid_ismet_ozkan.py diff --git a/Week03/pyramid_ismet_ozkan.py b/Week03/pyramid_ismet_ozkan.py new file mode 100644 index 00000000..da898937 --- /dev/null +++ b/Week03/pyramid_ismet_ozkan.py @@ -0,0 +1,6 @@ +def calculate_pyramid_height(number_of_blocks): + height = 0 + while number_of_blocks > height: + height += 1 + number_of_blocks -= height + return height