Compare commits
No commits in common. "e925c1d28401ad15f49741ff6ceebc8a2dadaefe" and "af19e6039da5560ba8fee29a0f93cf46ebfe956b" have entirely different histories.
e925c1d284
...
af19e6039d
@ -1,5 +0,0 @@
|
|||||||
Write a program to find lines containing the word "Hamlet".
|
|
||||||
Do use regular expressions.
|
|
||||||
|
|
||||||
POINTS: 1
|
|
||||||
DEADLINE: 2023-11-26 23:59:59
|
|
@ -1,13 +0,0 @@
|
|||||||
import re
|
|
||||||
import sys
|
|
||||||
|
|
||||||
found_lines = []
|
|
||||||
|
|
||||||
|
|
||||||
for line in sys.stdin:
|
|
||||||
if re.search(r'\bHamlet\b', line):
|
|
||||||
found_lines.append(line.strip())
|
|
||||||
|
|
||||||
|
|
||||||
if found_lines:
|
|
||||||
print('\n'.join(found_lines))
|
|
@ -1,2 +0,0 @@
|
|||||||
Here comes Hamlet
|
|
||||||
Hamlet Hamlet again
|
|
@ -1,3 +0,0 @@
|
|||||||
Here comes Hamlet
|
|
||||||
ABC
|
|
||||||
Hamlet Hamlet again
|
|
@ -1,2 +0,0 @@
|
|||||||
Here comes Hamlet
|
|
||||||
Hamlet Hamlet again
|
|
@ -1,7 +0,0 @@
|
|||||||
Write a program to find lines containing the word "pies" separated by spaces.
|
|
||||||
The word does not need to have space on the left if it is the line beginning or space on the right if it is line ending.
|
|
||||||
Return line no matter of word "pies" casing.
|
|
||||||
Do use regular expressions.
|
|
||||||
|
|
||||||
POINTS: 1
|
|
||||||
DEADLINE: 2023-11-26 23:59:59
|
|
@ -1,13 +0,0 @@
|
|||||||
import re
|
|
||||||
import sys
|
|
||||||
|
|
||||||
found_lines = []
|
|
||||||
|
|
||||||
for line in sys.stdin:
|
|
||||||
if re.search(r'\b\s*pies\s*\b', line, flags=re.IGNORECASE):
|
|
||||||
found_lines.append(line.strip())
|
|
||||||
|
|
||||||
|
|
||||||
if found_lines:
|
|
||||||
print('\n'.join(found_lines))
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
|||||||
Pies ma Alę
|
|
||||||
Kot i pies to zwierzęta
|
|
||||||
pies
|
|
@ -1,5 +0,0 @@
|
|||||||
Pies ma Alę
|
|
||||||
Ala ma psa
|
|
||||||
tu nic nie ma
|
|
||||||
Kot i pies to zwierzęta
|
|
||||||
pies
|
|
@ -1,3 +0,0 @@
|
|||||||
Pies ma Alę
|
|
||||||
Kot i pies to zwierzęta
|
|
||||||
pies
|
|
@ -1,6 +0,0 @@
|
|||||||
Write a program to find lines containing date from 1900 to 1999 in format '19XX r.' no matter what on the left or right of the expression.
|
|
||||||
Note that part ' r.' is obligatory.
|
|
||||||
Do use regular expressions.
|
|
||||||
|
|
||||||
POINTS: 1
|
|
||||||
DEADLINE: 2023-11-26 23:59:59
|
|
@ -1,14 +0,0 @@
|
|||||||
import re
|
|
||||||
import sys
|
|
||||||
|
|
||||||
|
|
||||||
found_lines = []
|
|
||||||
|
|
||||||
for line in sys.stdin:
|
|
||||||
if re.search(r'\b19\d{2}\s*r\.\b|\b\W19\d{2}\s*r\.\b|\b19\d{2}\s*r\.\W', line, flags=re.IGNORECASE):
|
|
||||||
found_lines.append(line.strip())
|
|
||||||
|
|
||||||
|
|
||||||
if found_lines:
|
|
||||||
print('\n'.join(found_lines))
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
|||||||
Kiedyś był 1934 r.
|
|
||||||
Kiedyś był 1934 r.fsdfsdfsdf
|
|
||||||
1934 r. to jakaś data
|
|
@ -1,5 +0,0 @@
|
|||||||
Kiedyś był 1934 r.
|
|
||||||
Kiedyś był 1934 r.fsdfsdfsdf
|
|
||||||
Kiedyś był 1935 rok
|
|
||||||
1934 r. to jakaś data
|
|
||||||
1934 to też jakaś data
|
|
@ -1,3 +0,0 @@
|
|||||||
Kiedyś był 1934 r.
|
|
||||||
Kiedyś był 1934 r.fsdfsdfsdf
|
|
||||||
1934 r. to jakaś data
|
|
@ -1,6 +0,0 @@
|
|||||||
Write a program to find all maximum substrings of digits.
|
|
||||||
Return only these substrings separated by spaces in their order.
|
|
||||||
Do use regular expressions.
|
|
||||||
|
|
||||||
POINTS: 2
|
|
||||||
DEADLINE: 2023-11-26 23:59:59
|
|
@ -1,21 +0,0 @@
|
|||||||
import re
|
|
||||||
import sys
|
|
||||||
|
|
||||||
def remove_non_digits(line):
|
|
||||||
|
|
||||||
return re.sub(r'[^0-9\s]', '', line)
|
|
||||||
|
|
||||||
|
|
||||||
processed_lines = []
|
|
||||||
|
|
||||||
for line in sys.stdin:
|
|
||||||
processed_line = remove_non_digits(line)
|
|
||||||
processed_line = re.sub(r'^\s+|\s+$', '', processed_line)
|
|
||||||
processed_line = re.sub(r'\s+', ' ', processed_line)
|
|
||||||
|
|
||||||
digit_groups = re.findall(r'\d+', processed_line)
|
|
||||||
|
|
||||||
if digit_groups:
|
|
||||||
processed_lines.append(' '.join(digit_groups))
|
|
||||||
|
|
||||||
print('\n'.join(processed_lines))
|
|
@ -1,4 +0,0 @@
|
|||||||
34234 34 5
|
|
||||||
34535
|
|
||||||
34
|
|
||||||
1992 1999
|
|
@ -1,5 +0,0 @@
|
|||||||
34234 34 dfd gfd 5
|
|
||||||
34535
|
|
||||||
fsdflskfjsdflk
|
|
||||||
fsdkfj sdf34fdfd
|
|
||||||
Firma powstała w 1992 r., z połączenia Authorware, Inc. (twórców pakietu Authorware) i MacroMind-Paracomp (producenta Macromind Director). W 1999 r. Macromedia zakupiła firmę Allaire i jej bi
|
|
@ -1,4 +0,0 @@
|
|||||||
34234 34 5
|
|
||||||
34535
|
|
||||||
34
|
|
||||||
1992 1999
|
|
@ -1,35 +0,0 @@
|
|||||||
Liczba pięcio bądź sześciocyfrowa
|
|
||||||
=================================
|
|
||||||
|
|
||||||
Napisać program, który wczytuje kolejne wiersze ze standardowego
|
|
||||||
wejścia i analizuje każdy wiersz (bez znaku końca wiersza). Należy w
|
|
||||||
jak największym stopniu wykorzystać wyrażenia regularne (np. nie wolno
|
|
||||||
użyć negacji jako operacji w danym języku programowania, jeśli da się
|
|
||||||
to wyrazić w samym wyrażeniu regularnym). Tam, gdzie to możliwe należy
|
|
||||||
użyć pojedynczego wyrażenia regularnego.
|
|
||||||
|
|
||||||
Write a program, which loads consecutive lines from standard input
|
|
||||||
and analyze every line (with no newline character). You should
|
|
||||||
use regular expressions to the greatest extent possible (e.g. you
|
|
||||||
can not use negation in the programming language if it is
|
|
||||||
possible to express the same in regular expression). Wherever possible,
|
|
||||||
use one regular expression.
|
|
||||||
|
|
||||||
Dla każdego napisu należy sprawdzić, czy napis reprezentuje liczbę pięcio-
|
|
||||||
bądź sześciocyfrową. Liczba nie powinna zawierać zer nieznaczących.
|
|
||||||
Jeśli napis spełnia tak określony warunek, należy wypisać na
|
|
||||||
standardowym wyjściu 'yes', w przeciwnym razie — 'no'.
|
|
||||||
|
|
||||||
For each string, check if the given string represents
|
|
||||||
5 or 6 digits number. The number should not contain leading zeros.
|
|
||||||
If the string fulfills the condition, you should print 'yes' on the
|
|
||||||
standard output and 'no' otherwise.
|
|
||||||
|
|
||||||
UWAGA! Zadanie przeznaczone dla studentów, których numer indeksu
|
|
||||||
dzieli się przez 10 z resztą 6.
|
|
||||||
|
|
||||||
Attention. The task is for students whose students id remainder of the division by 10 is 6.
|
|
||||||
|
|
||||||
POINTS: 1
|
|
||||||
DEADLINE: 2023-12-10 23:59:59
|
|
||||||
REMAINDER: 6/10
|
|
@ -1,19 +0,0 @@
|
|||||||
import re
|
|
||||||
import sys
|
|
||||||
|
|
||||||
def check(a):
|
|
||||||
pattern = r'^(?!0)\d{5,6}$'
|
|
||||||
|
|
||||||
if re.match(pattern, a):
|
|
||||||
return True
|
|
||||||
else:
|
|
||||||
return False
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
for line in sys.stdin:
|
|
||||||
word = line.strip()
|
|
||||||
if check(word):
|
|
||||||
print("yes")
|
|
||||||
else:
|
|
||||||
print("no")
|
|
@ -1,10 +0,0 @@
|
|||||||
no
|
|
||||||
no
|
|
||||||
yes
|
|
||||||
yes
|
|
||||||
yes
|
|
||||||
yes
|
|
||||||
no
|
|
||||||
no
|
|
||||||
yes
|
|
||||||
yes
|
|
@ -1,10 +0,0 @@
|
|||||||
012345
|
|
||||||
0123456
|
|
||||||
10000
|
|
||||||
100001
|
|
||||||
12345
|
|
||||||
123456
|
|
||||||
333333333333
|
|
||||||
9999
|
|
||||||
99999
|
|
||||||
999999
|
|
@ -1,10 +0,0 @@
|
|||||||
no
|
|
||||||
no
|
|
||||||
yes
|
|
||||||
yes
|
|
||||||
yes
|
|
||||||
yes
|
|
||||||
no
|
|
||||||
no
|
|
||||||
yes
|
|
||||||
yes
|
|
@ -1,35 +0,0 @@
|
|||||||
Potęga setki
|
|
||||||
============
|
|
||||||
|
|
||||||
Napisać program, który wczytuje kolejne wiersze ze standardowego
|
|
||||||
wejścia i analizuje każdy wiersz (bez znaku końca wiersza). Należy w
|
|
||||||
jak największym stopniu wykorzystać wyrażenia regularne (np. nie wolno
|
|
||||||
użyć negacji jako operacji w danym języku programowania, jeśli da się
|
|
||||||
to wyrazić w samym wyrażeniu regularnym). Tam, gdzie to możliwe należy
|
|
||||||
użyć pojedynczego wyrażenia regularnego.
|
|
||||||
|
|
||||||
Write a program, which loads consecutive lines from standard input
|
|
||||||
and analyze every line (with no newline character). You should
|
|
||||||
use regular expressions to the greatest extent possible (e.g. you
|
|
||||||
can not use negation in the programming language if it is
|
|
||||||
possible to express the same in regular expression). Wherever possible,
|
|
||||||
use one regular expression.
|
|
||||||
|
|
||||||
Dla każdego napisu należy sprawdzić, czy zadany napis jest potęgą liczby
|
|
||||||
100.
|
|
||||||
Jeśli napis spełnia tak określony warunek, należy wypisać na
|
|
||||||
standardowym wyjściu 'yes', w przeciwnym razie — 'no'.
|
|
||||||
|
|
||||||
For each string, check if the given string is the power of 100.
|
|
||||||
If the string fulfills the condition, you should print 'yes' on the
|
|
||||||
standard output and 'no' otherwise.
|
|
||||||
|
|
||||||
|
|
||||||
UWAGA! Zadanie przeznaczone dla studentów, których numer indeksu
|
|
||||||
dzieli się przez 27 z resztą 19.
|
|
||||||
|
|
||||||
Attention. The task is for students whose students id remainder of the division by 27 is 19.
|
|
||||||
|
|
||||||
POINTS: 1
|
|
||||||
DEADLINE: 2023-12-10 23:59:59
|
|
||||||
REMAINDER: 19/27
|
|
@ -1,19 +0,0 @@
|
|||||||
import re
|
|
||||||
import sys
|
|
||||||
|
|
||||||
def check(a):
|
|
||||||
pattern = r'^(?!10$)10*$'
|
|
||||||
|
|
||||||
if re.match(pattern, a):
|
|
||||||
return True
|
|
||||||
else:
|
|
||||||
return False
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
for line in sys.stdin:
|
|
||||||
word = line.strip()
|
|
||||||
if check(word):
|
|
||||||
print("yes")
|
|
||||||
else:
|
|
||||||
print("no")
|
|
@ -1,9 +0,0 @@
|
|||||||
no
|
|
||||||
yes
|
|
||||||
no
|
|
||||||
yes
|
|
||||||
yes
|
|
||||||
yes
|
|
||||||
no
|
|
||||||
no
|
|
||||||
no
|
|
@ -1,9 +0,0 @@
|
|||||||
-100
|
|
||||||
1
|
|
||||||
10
|
|
||||||
100
|
|
||||||
10000
|
|
||||||
1000000
|
|
||||||
1001
|
|
||||||
2000
|
|
||||||
500
|
|
@ -1,9 +0,0 @@
|
|||||||
no
|
|
||||||
yes
|
|
||||||
no
|
|
||||||
yes
|
|
||||||
yes
|
|
||||||
yes
|
|
||||||
no
|
|
||||||
no
|
|
||||||
no
|
|
Loading…
Reference in New Issue
Block a user