Skip to content

Commit 9cf0e0d

Browse files
committed
� Conflicts: � notebooks/Day_06.ipynb
2 parents df32453 + 98a0b02 commit 9cf0e0d

File tree

2 files changed

+28
-49
lines changed

2 files changed

+28
-49
lines changed

Status/Day_23.md

+15
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,21 @@ if __name__ == '__main__':
214214
n = int(input())
215215
print_rangoli(n)
216216
```
217+
**suggula jaswanth**
218+
219+
```python3
220+
def rangoli(n):
221+
# your code goes here
222+
l1=list(map(chr,range(97,123)))
223+
x=l1[n-1::-1]+l1[1:n]
224+
mid=len('-'.join(x))
225+
for i in range(1,n):
226+
print('-'.join(l1[n-1:n-i:-1]+l1[n-i:n]).center(mid,'-'))
227+
for i in range(n,0,-1):
228+
print('-'.join(l1[n-1:n-i:-1]+l1[n-i:n]).center(mid,'-'))
229+
rangoli(5)
230+
231+
```
217232

218233
---
219234

notebooks/Day_06.ipynb

+13-49
Original file line numberDiff line numberDiff line change
@@ -50,19 +50,16 @@
5050
},
5151
{
5252
"cell_type": "code",
53-
"execution_count": 2,
54-
"metadata": {
55-
"pycharm": {
56-
"is_executing": false
57-
}
58-
},
53+
"execution_count": 1,
54+
"metadata": {},
5955
"outputs": [
6056
{
6157
"name": "stdout",
58+
"output_type": "stream",
6259
"text": [
63-
"ABd1234@1\n"
64-
],
65-
"output_type": "stream"
60+
"aaaaa\n",
61+
"\n"
62+
]
6663
}
6764
],
6865
"source": [
@@ -121,21 +118,9 @@
121118
},
122119
{
123120
"cell_type": "code",
124-
"execution_count": 3,
125-
"metadata": {
126-
"pycharm": {
127-
"is_executing": false
128-
}
129-
},
130-
"outputs": [
131-
{
132-
"name": "stdout",
133-
"text": [
134-
"ABd1234@1\n"
135-
],
136-
"output_type": "stream"
137-
}
138-
],
121+
"execution_count": null,
122+
"metadata": {},
123+
"outputs": [],
139124
"source": [
140125
"def check(x):\n",
141126
" cnt = 6 <= len(x) and len(x) <= 12\n",
@@ -176,21 +161,9 @@
176161
},
177162
{
178163
"cell_type": "code",
179-
"execution_count": 4,
180-
"metadata": {
181-
"pycharm": {
182-
"is_executing": false
183-
}
184-
},
185-
"outputs": [
186-
{
187-
"name": "stdout",
188-
"text": [
189-
"ABd1234@1\n"
190-
],
191-
"output_type": "stream"
192-
}
193-
],
164+
"execution_count": null,
165+
"metadata": {},
166+
"outputs": [],
194167
"source": [
195168
"import re\n",
196169
"\n",
@@ -304,17 +277,8 @@
304277
"nbconvert_exporter": "python",
305278
"pygments_lexer": "ipython3",
306279
"version": "3.7.6"
307-
},
308-
"pycharm": {
309-
"stem_cell": {
310-
"cell_type": "raw",
311-
"source": [],
312-
"metadata": {
313-
"collapsed": false
314-
}
315-
}
316280
}
317281
},
318282
"nbformat": 4,
319283
"nbformat_minor": 4
320-
}
284+
}

0 commit comments

Comments
 (0)