Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
5f61213d21 | ||
|
e3b4150554 | ||
|
a5ec559880 | ||
58e8d6c4ad | |||
cd74f9ca4c | |||
1204013bed | |||
a4bf772414 |
106
TaskA01/shakespeare.out
Normal file
106
TaskA01/shakespeare.out
Normal file
@ -0,0 +1,106 @@
|
||||
CLAUDIUS, King of Denmark, Hamlet’s uncle.
|
||||
The GHOST of the late king, Hamlet’s father.
|
||||
GERTRUDE, the Queen, Hamlet’s mother, now wife of Claudius.
|
||||
HORATIO, Friend to Hamlet.
|
||||
Dar’d to the combat; in which our valiant Hamlet,
|
||||
His fell to Hamlet. Now, sir, young Fortinbras,
|
||||
Unto young Hamlet; for upon my life,
|
||||
Enter Claudius King of Denmark, Gertrude the Queen, Hamlet, Polonius,
|
||||
Though yet of Hamlet our dear brother’s death
|
||||
But now, my cousin Hamlet, and my son—
|
||||
Good Hamlet, cast thy nighted colour off,
|
||||
’Tis sweet and commendable in your nature, Hamlet,
|
||||
Let not thy mother lose her prayers, Hamlet.
|
||||
This gentle and unforc’d accord of Hamlet
|
||||
[_Exeunt all but Hamlet._]
|
||||
For Hamlet, and the trifling of his favour,
|
||||
So please you, something touching the Lord Hamlet.
|
||||
Than a command to parley. For Lord Hamlet,
|
||||
As to give words or talk with the Lord Hamlet.
|
||||
Enter Hamlet, Horatio and Marcellus.
|
||||
That I will speak to thee. I’ll call thee Hamlet,
|
||||
[_Ghost beckons Hamlet._]
|
||||
[_Exeunt Ghost and Hamlet._]
|
||||
Enter Ghost and Hamlet.
|
||||
Wouldst thou not stir in this. Now, Hamlet, hear.
|
||||
O Hamlet, what a falling off was there,
|
||||
Adieu, adieu, adieu. Hamlet, remember me.
|
||||
[_Within._] Lord Hamlet.
|
||||
And what so poor a man as Hamlet is
|
||||
Lord Hamlet, with his doublet all unbrac’d,
|
||||
Of Hamlet’s transformation; so I call it,
|
||||
And bring these gentlemen where Hamlet is.
|
||||
The very cause of Hamlet’s lunacy.
|
||||
Came this from Hamlet to her?
|
||||
‘Lord Hamlet is a prince, out of thy star.
|
||||
Enter Hamlet, reading.
|
||||
How does my good Lord Hamlet?
|
||||
You go to seek the Lord Hamlet; there he is.
|
||||
For we have closely sent for Hamlet hither,
|
||||
Of Hamlet’s wildness: so shall I hope your virtues
|
||||
Enter Hamlet.
|
||||
You need not tell us what Lord Hamlet said,
|
||||
Enter Hamlet and certain Players.
|
||||
How fares our cousin Hamlet?
|
||||
I have nothing with this answer, Hamlet; these words are not mine.
|
||||
Come hither, my dear Hamlet, sit by me.
|
||||
[_Exeunt all but Hamlet and Horatio._]
|
||||
[_Exeunt all but Hamlet._]
|
||||
Enter Hamlet.
|
||||
Enter Hamlet.
|
||||
Hamlet, thou hast thy father much offended.
|
||||
Why, how now, Hamlet?
|
||||
O Hamlet, speak no more.
|
||||
No more, sweet Hamlet.
|
||||
Speak to her, Hamlet.
|
||||
O Hamlet, thou hast cleft my heart in twain.
|
||||
[_Exit Hamlet dragging out Polonius._]
|
||||
What, Gertrude? How does Hamlet?
|
||||
Hamlet in madness hath Polonius slain,
|
||||
Enter Hamlet.
|
||||
[_Within._] Hamlet! Lord Hamlet!
|
||||
What noise? Who calls on Hamlet? O, here they come.
|
||||
Enter Hamlet and Guildenstern.
|
||||
Now, Hamlet, where’s Polonius?
|
||||
Hamlet, this deed, for thine especial safety,—
|
||||
Ay, Hamlet.
|
||||
Thy loving father, Hamlet.
|
||||
The present death of Hamlet. Do it, England;
|
||||
Enter Hamlet, Rosencrantz, Guildenstern &c.
|
||||
[_Exeunt all but Hamlet._]
|
||||
I should be greeted, if not from Lord Hamlet.
|
||||
Letters, my lord, from Hamlet.
|
||||
From Hamlet! Who brought them?
|
||||
’Tis Hamlet’s character. ’Naked!’
|
||||
And that in Hamlet’s hearing, for a quality
|
||||
Did Hamlet so envenom with his envy
|
||||
Hamlet comes back: what would you undertake
|
||||
Hamlet return’d shall know you are come home:
|
||||
Enter Hamlet and Horatio, at a distance.
|
||||
Hamlet o’ercame Fortinbras.
|
||||
that young Hamlet was born,—he that is mad, and sent into England.
|
||||
I hop’d thou shouldst have been my Hamlet’s wife;
|
||||
Hamlet the Dane.
|
||||
Hamlet! Hamlet!
|
||||
Enter Hamlet and Horatio.
|
||||
[_Hamlet moves him to put on his hat._]
|
||||
Come, Hamlet, come, and take this hand from me.
|
||||
[_The King puts Laertes’s hand into Hamlet’s._]
|
||||
Was’t Hamlet wrong’d Laertes? Never Hamlet.
|
||||
If Hamlet from himself be ta’en away,
|
||||
Then Hamlet does it not, Hamlet denies it.
|
||||
Hamlet is of the faction that is wrong’d;
|
||||
His madness is poor Hamlet’s enemy.
|
||||
Give them the foils, young Osric. Cousin Hamlet,
|
||||
If Hamlet give the first or second hit,
|
||||
The King shall drink to Hamlet’s better breath,
|
||||
‘Now the King drinks to Hamlet.’ Come, begin.
|
||||
Stay, give me drink. Hamlet, this pearl is thine;
|
||||
Here, Hamlet, take my napkin, rub thy brows.
|
||||
The Queen carouses to thy fortune, Hamlet.
|
||||
[_Laertes wounds Hamlet; then, in scuffling, they change rapiers, and
|
||||
Hamlet wounds Laertes._]
|
||||
No, no, the drink, the drink! O my dear Hamlet!
|
||||
It is here, Hamlet. Hamlet, thou art slain.
|
||||
Exchange forgiveness with me, noble Hamlet.
|
||||
Bear Hamlet like a soldier to the stage,
|
17
TaskA01/shakespeare.py
Normal file
17
TaskA01/shakespeare.py
Normal file
@ -0,0 +1,17 @@
|
||||
import sys
|
||||
|
||||
def solve(lines):
|
||||
return [l for l in lines if "Hamlet" in l]
|
||||
|
||||
if __name__ == "__main__":
|
||||
lines = []
|
||||
|
||||
fp = sys.argv[1]
|
||||
assert(fp == "shakespeare.in") # just a sanity check
|
||||
|
||||
print(fp)
|
||||
with open(fp, encoding="utf-8") as f:
|
||||
lines = f.readlines()
|
||||
sol = solve(lines)
|
||||
with open("./shakespeare.out", 'w', encoding="utf-8") as f:
|
||||
f.writelines(sol)
|
13
TaskA02/polish_wiki_excerpt.out
Normal file
13
TaskA02/polish_wiki_excerpt.out
Normal file
@ -0,0 +1,13 @@
|
||||
Pies ten pochodzi z południowych Chin, z terenów prowincji Guangdong. Został rozpropagowany i hodowany w celach wystawowych przez hodowców w USA. Nazwa psa, pochodząca z chińskiego "shā pí" (沙皮), oznacza dosłownie "piaszczysta skóra".
|
||||
Chart polski – polska rasa psa myśliwskiego, znana prawdopodobnie od czasów Galla Anonima, zaliczana do grupy chartów. Dawniej użytkowana była przede wszystkim do polowań, obecnie jako pies reprezentacyjny.
|
||||
Smukły pies o wąskim pysku. Chart polski jest wyraźnie mocniejszy i nie tak finezyjny w kształtach jak inne charty. Jest najwyższą z polskich ras.
|
||||
Chart polski to pies silny, wytrzymały, o dobrze zbalansowanym ciele i proporcjach (wpisany jest w prostokąt oparty na dłuższym boku) pozwalających nie tylko na szybki galop, ale i na pokonywanie dużych odległości wyciągniętym kłusem. Jest psem o okrywie włosowej dobrze chroniącej go przed zimnem, wilgocią i wiatrem.
|
||||
Pies wymagający sporej dawki codziennego ruchu, stąd jest idealnym towarzyszem dla ludzi uprawiających jeździectwo lub jogging.
|
||||
W filmie występuje pies rasy landseer.
|
||||
Bohaterami anime jest grupa łowców nagród, podróżująca statkiem kosmicznym o nazwie "Bebop": Spike Spiegel, Faye Valentine, Jet Black, haker Ed oraz genetycznie zmodyfikowany pies Ein.
|
||||
Tytułowym głównym bohaterem serii jest Lucky Luke - kowboj, najszybszy rewolwerowiec na Dzikim Zachodzie i najgorszy koszmar braci Dalton. Zawsze, gdy planują oni skok na bank lub inne przestępstwo, dzielny stróż prawa staje im na drodze. W jego przygodach towarzyszą mu inteligentny koń Jolly Jumper i pies Bzik (we francuskojęzycznym oryginale: "Rantanplan").
|
||||
Serial w krzywym zwierciadle przedstawia życie typowej amerykańskiej rodziny. Jej głową i jedynym żywicielem jest wiecznie sfrustrowany sprzedawca butów, Al Bundy. Kocha swojego starego dodge'a, wolny czas spędza siedząc na kanapie, oglądając telewizję i pijąc piwo lub na posiedzeniach w toalecie. Jego małżonką jest Peggy, która całymi dniami przesiaduje przed telewizorem, oglądając "The Oprah Winfrey Show", i The Phil Donahue Show zajadając się popcornem i czekoladkami, paląc przy tym papierosa za papierosem. O jej podejściu do typowo domowych zajęć świadczą zadawane przez nią pytania, np. o odkurzacz – "Jak się nazywa to coś, co ciągniesz po dywanie, a ono buczy?" Tytułowymi dziećmi są nastoletni Bud oraz Kelly, którzy nie przepadają za sobą i nie przepuszczą żadnej okazji, aby sobie dokuczyć czy donieść na siebie. Kelly i Bud dojrzewają w trakcie trwania serialu, przez co trochę się zmieniają: Bud z wrednego kilkunastolatka przeistacza się w nastoletniego macho, którego nie chce żadna dziewczyna, a Kelly z każdą serią staje się coraz mniej inteligentna. Wiecznie niedocenianym członkiem rodziny jest pies Buck, który jednak żyje swoim życiem i sam troszczy się o siebie. W trakcie wszystkich dziesięciu lat trwania serialu Bundym towarzyszy dwójka sąsiadów: Marcy, najpierw ze swoim pierwszym mężem, Steve'em Rhoadesem, a następnie z Jeffersonem d'Arcym. Marcy lubi przebywać z Peggy, jest za to na bakier z Alem, natomiast Al utrzymuje dobre stosunki z mężami Marcy, szczególnie Jeffersonem – Steve raczej nie darzył Bundych tak bezwzględną sympatią.
|
||||
Buck (prawdziwe imię Michael; trener Steven Ritt) to pies rodziny Bundych, Briard. Głosu użycza mu Kevin Curran, a w odcinkach specjalnych Cheech Marin. Zdechł w wieku dwunastu lat (w 1996 roku Michael przeszedł na emeryturę, zdechł dziewięć miesięcy po tym, jak Bucka uśmiercono w serialu).
|
||||
Lucky to drugi pies rodziny Bundych, spaniel, reinkarnacja Bucka.
|
||||
20 stycznia 1974 r. o godz. 10.40 w Dolinie Mięguszowieckiej wydarzyła się największa jak do owej pory katastrofa lawinowa w Tatrach. Żlebem spod Przełęczy nad Skokiem w Grani Baszt zeszła potężna lawina, która przewaliła się przez Mięguszowiecki Potok i wdarła 140 m na przeciwległy stok, wspinając się na niego z rozpędu aż 44 m w górę. Na stoku tym, na śnieżnym pólku trenowali z instruktorem uczestnicy kursu narciarskiego ze słowackiego Technikum Budowlanego. Lawina przysypała 24 z nich. Dzięki błyskawicznej akcji ratunkowej (było to tylko 400 m od schroniska nad Popradzkim Stawem) udało się odgrzebać spod śniegu 11 płycej przywalonych. W ciągu następnych godzin i kilku dni liczne zespoły ratunkowe (z pomocą przyszło również wojsko) odgrzebały ciała 10 uczestników kursu; wśród nich nauczyciela z 12-letnim synem. Pies wskazał miejsce, gdzie po 5 godzinach od zejścia lawiny wydobyto żywego 18-latka przywalonego metrową warstwą śniegu. Ciała dwóch uczniów udało się znaleźć dopiero wiosną po stopieniu się śniegu.
|
||||
Początkowo Morris wykorzystał w swoich komiksach historycznych braci Daltonów Grat, Bill i Emmett, których przedstawił jako bardzo groźnych i inteligentnych przestępców. Niestety po pierwszym spotkaniu z Lucky Luke, zostali aresztowani i skazani w więzieniu na śmierć. Morris żałował potem swojej decyzji i wraz z Gościnnym wprowadził na ich miejsce, czwórkę kuzynów (także) Daltonów – Joe, Williama, Jacka i Averelle, którzy byli przeciwieństwem swoich kuzynów. Wiecznie pechowi, gamoniowaci i niezbyt inteligentni. Wkrótce stali się oni najpopularniejszymi postaciami w serii, zaraz po samym Lucky Luke i z czasem dołączył do nich pies Rantanplan. Doczekali się także solowego filmu dystrybuowanego w Polsce pt. "Lucky Luke" (oryg. "Les Dalton").
|
15
TaskA02/solution.py
Normal file
15
TaskA02/solution.py
Normal file
@ -0,0 +1,15 @@
|
||||
import sys
|
||||
|
||||
# return if the sentence contains word pies
|
||||
def solve(lines):
|
||||
return [l for l in lines if "pies" in l.lower().split(" ")]
|
||||
|
||||
if __name__ == "__main__":
|
||||
lines = []
|
||||
|
||||
fp = sys.argv[1]
|
||||
with open(fp, encoding="utf-8") as f:
|
||||
lines = f.readlines()
|
||||
sol = solve(lines)
|
||||
with open("./polish_wiki_excerpt.out", 'w', encoding="utf-8") as f:
|
||||
f.writelines(sol)
|
951
TaskA03/polish_wiki_excerpt.out
Normal file
951
TaskA03/polish_wiki_excerpt.out
Normal file
File diff suppressed because one or more lines are too long
35
TaskA03/solution.py
Normal file
35
TaskA03/solution.py
Normal file
@ -0,0 +1,35 @@
|
||||
import sys
|
||||
|
||||
# '19xx' literally would be accepted as well but we won't tell anyone
|
||||
def solve(lines):
|
||||
def detect_date(s):
|
||||
date_f = "19XX r."
|
||||
date_l = len(date_f)
|
||||
|
||||
j = 0
|
||||
for i in range(len(s)):
|
||||
c = s[i]
|
||||
|
||||
if j == date_l:
|
||||
return True
|
||||
elif c == date_f[j] \
|
||||
or (j in (2, 3) and c.isdigit()):
|
||||
j += 1
|
||||
continue
|
||||
|
||||
j = 0
|
||||
|
||||
return False
|
||||
|
||||
return filter(detect_date, lines)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
lines = []
|
||||
|
||||
fp = sys.argv[1]
|
||||
with open(fp, encoding="utf-8") as f: # following symlinks might not work on Windows
|
||||
lines = f.readlines()
|
||||
sol = solve(lines)
|
||||
with open("./polish_wiki_excerpt.out", 'w', encoding="utf-8") as f:
|
||||
f.writelines(sol)
|
19939
TaskA04/polish_wiki_excerpt.out
Normal file
19939
TaskA04/polish_wiki_excerpt.out
Normal file
File diff suppressed because it is too large
Load Diff
30
TaskA04/solution.py
Normal file
30
TaskA04/solution.py
Normal file
@ -0,0 +1,30 @@
|
||||
import sys
|
||||
|
||||
# detect numbers. separate numbers by spaces
|
||||
def solve(lines):
|
||||
res = []
|
||||
|
||||
j = 0
|
||||
for l in lines:
|
||||
numbers = []
|
||||
for i in range(len(l)):
|
||||
c = l[i]
|
||||
|
||||
if j > 0 and not c.isdigit():
|
||||
numbers.append(l[i-j:i])
|
||||
j = j+1 if (c.isdigit() and c.isascii()) else 0
|
||||
|
||||
if numbers:
|
||||
res.append(' '.join(numbers))
|
||||
return '\n'.join(res)
|
||||
|
||||
if __name__ == "__main__":
|
||||
lines = []
|
||||
|
||||
fp = sys.argv[1]
|
||||
with open(fp, encoding="utf-8") as f:
|
||||
lines = f.readlines()
|
||||
sol = solve(lines)
|
||||
with open("./polish_wiki_excerpt.out", 'w', encoding="utf-8") as f:
|
||||
f.writelines(sol)
|
||||
f.write('\n') # it expects for file to end with newline :)
|
Loading…
Reference in New Issue
Block a user