Skip to content

Commit

Permalink
Generated Sample Programs website automatically
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Dec 22, 2023
1 parent 0be1b9e commit 22fb8b7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/languages/python/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors:
- Ron Zuckerman
date: 2018-03-15
featured-image: programming-languages.jpg
last-modified: 2023-05-15
last-modified: 2023-12-22
layout: default
tags:
- python
Expand Down
2 changes: 1 addition & 1 deletion docs/projects/baklava/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
date: 2018-09-17
featured-image: baklava-in-every-language.jpg
last-modified: 2023-12-21
last-modified: 2023-12-22
layout: default
tags:
- baklava
Expand Down
4 changes: 2 additions & 2 deletions docs/projects/baklava/python/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors:
- Jeremy Grifski
date: 2018-09-17
featured-image: baklava-in-every-language.jpg
last-modified: 2020-10-15
last-modified: 2023-12-22
layout: default
tags:
- baklava
Expand All @@ -21,7 +21,7 @@ Welcome to the [Baklava](https://sampleprograms.io/projects/baklava) in [Python]
for i in range(0, 10, 1):
print((" " * (10 - i)) + ("*" * (i * 2 + 1)))

for i in range(10, -1, -1):
for i in range(10, -1, -1):
print((" " * (10 - i)) + ("*" * (i * 2 + 1)))

```
Expand Down

0 comments on commit 22fb8b7

Please sign in to comment.