Skip to content

Commit e8af982

Browse files
channel
1 parent e5049bc commit e8af982

File tree

916 files changed

+1872
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

916 files changed

+1872
-0
lines changed

5.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
src = open('banner.p', 'rb')
44
result = pickle.load(src)
55

6+
67
def print_ary(ary, s):
78
for i in range(len(ary)):
89
element = ary[i]
@@ -12,5 +13,6 @@ def print_ary(ary, s):
1213
s += sub_element[0] * sub_element[1]
1314
print(s)
1415

16+
1517
print_ary(result, "")
1618

6.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
def read_next(file_name):
2+
f = open("channel/channel/{}.txt".format(file_name), "r")
3+
lines = f.readlines()
4+
for i in range(len(lines)):
5+
s = lines[i]
6+
print(s)
7+
ary = s.split()
8+
result = ary[-1]
9+
if result.isdigit():
10+
read_next(result)
11+
else:
12+
pass
13+
14+
15+
read_next(90052)

channel/channel.html

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<html> <!-- <-- zip -->
2+
<head>
3+
<title>now there are pairs</title>
4+
<link rel="stylesheet" type="text/css" href="../style.css">
5+
</head>
6+
<body>
7+
<center>
8+
<img src="channel.jpg">
9+
<br/>
10+
<!-- The following has nothing to do with the riddle itself. I just
11+
thought it would be the right point to offer you to donate to the
12+
Python Challenge project. Any amount will be greatly appreciated.
13+
14+
-thesamet
15+
-->
16+
17+
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
18+
<input type="hidden" name="cmd" value="_xclick">
19+
<input type="hidden" name="business" value="thesamet@gmail.com">
20+
<input type="hidden" name="item_name" value="Python Challenge donations">
21+
<input type="hidden" name="no_note" value="1">
22+
<input type="hidden" name="currency_code" value="USD">
23+
<input type="hidden" name="tax" value="0">
24+
<input type="hidden" name="bn" value="PP-DonationsBF">
25+
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but04.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
26+
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
27+
</form>
28+
29+
</body>
30+
</html>

channel/channel.jpg

37.7 KB

channel/channel.zip

105 KB
Binary file not shown.

channel/channel/100.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Next nothing is 84844

channel/channel/10134.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Next nothing is 89272

channel/channel/1035.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Next nothing is 88241

channel/channel/1043.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Next nothing is 78311

channel/channel/10454.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Next nothing is 8810

0 commit comments

Comments
 (0)