-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtuples.py
58 lines (40 loc) · 2.29 KB
/
tuples.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
"""Functions to help Azara and Rui locate pirate treasure."""
AzaraType = tuple[str, str]
RuiType = tuple[str, tuple[str, str], str]
CombinedType = tuple[str, str, str, tuple[str, str], str]
def get_coordinate(record: tuple[str, str]) -> str:
"""Return coordinate value from a tuple containing the treasure name, and treasure coordinate.
:param record: tuple - with a (treasure, coordinate) pair.
:return: str - the extracted map coordinate.
"""
return record[1]
def convert_coordinate(coordinate: str) -> tuple[str, str]:
"""Split the given coordinate into tuple containing its individual components.
:param coordinate: str - a string map coordinate
:return: tuple - the string coordinate split into its individual components.
"""
return tuple(coordinate)
def compare_records(azara_record: AzaraType, rui_record: RuiType) -> bool:
"""Compare two record types and determine if their coordinates match.
:param azara_record: tuple - a (treasure, coordinate) pair.
:param rui_record: tuple - a (location, tuple(coordinate_1, coordinate_2), quadrant) trio.
:return: bool - do the coordinates match?
"""
return convert_coordinate(azara_record[1]) == rui_record[1]
def create_record(azara_record: AzaraType, rui_record: RuiType) -> CombinedType | str:
"""Combine the two record types (if possible) and create a combined record group.
:param azara_record: tuple - a (treasure, coordinate) pair.
:param rui_record: tuple - a (location, coordinate, quadrant) trio.
:return: tuple or str - the combined record (if compatible), or the string "not a match" (if incompatible).
"""
if compare_records(azara_record, rui_record):
return azara_record + rui_record
return "not a match"
def clean_up(combined_record_group: CombinedType) -> tuple[str, str, tuple[str, str], str]:
"""Clean up a combined record group into a multi-line string of single records.
:param combined_record_group: tuple - everything from both participants.
:return: str - everything "cleaned", excess coordinates and information are removed.
The return statement should be a multi-lined string with items separated by newlines.
(see HINTS.md for an example).
"""
return "".join(f"{(record[0],) + record[2:]}\n" for record in combined_record_group)