Skip to content

Commit 60847b6

Browse files
committed
Shards
1 parent 74e614b commit 60847b6

File tree

5 files changed

+46
-0
lines changed

5 files changed

+46
-0
lines changed

Shards/Code.py

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
data = input().split(' : ')
2+
print('Short:', '; '.join(sorted(list(map( str.lower, filter(lambda x : len(x) < 4, data))))))
3+
print('Long:', '; '.join(sorted(list(filter(lambda x : len(x) > 7, data)), reverse = True)))
4+
print('With letter:', '; '.join(list(map(str.capitalize, filter(lambda x : 'w' in x.lower(), data)))))

Shards/Conditions/Conditions.txt

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Write a programme that collects and sorts the word fragments
2+
Shards
3+
4+
Time limit - 1 second
5+
Memory limit - 64Mb
6+
Input - standard input or input.txt
7+
Output - standard output or output.txt
8+
9+
Write a program that will collect and sort the shards.

Shards/Conditions/Input.txt

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
A string of words written with a colon followed by a space.
2+
Output format
3+
Three strings:
4+
5+
- words shorter than 4 characters output in lower case in alphabetical order; at the beginning of the line output Short:
6+
7+
- words longer than 7 characters output in reverse alphabetical order; at the beginning of the string output Long:
8+
9+
- words that have the letter w in them, output with a capital letter, the rest small in the order of entry; at the beginning of a string, output With letter:
10+
11+
Words in strings output semicolon and space.
12+
13+
14+
15+
16+
17+
Example 1
18+
19+
Enter
20+
Shattered : the : shards : caused : even : more : trouble : than : the : mirror : itself
21+
Output
22+
Short: the; the
23+
Long: Shattered
24+
With letter:
25+
26+
Example 2
27+
Enter
28+
How : disgusting : and : vicious : this : troll : is
29+
Withdrawal
30+
Short : and; how; is
31+
Long : disgusting
32+
With letter: How

Shards/Conditions/Output.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Write a program that will collect and sort the shards.

Shards/Solutions.png

144 KB
Loading

0 commit comments

Comments
 (0)