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 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 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)