f | from fractions import Fraction | f | from fractions import Fraction |
| from math import floor | | from math import floor |
| | | |
| class Sausage: | | class Sausage: |
n | UNIT_VOLUME = 1 | n | FULL_SIZE = 1 |
| FILLING_LENGTH = 12 | | SLICE_SIZE = 12 |
| | | |
n | def __init__(self, filling='pork!', size='1'): | n | def __init__(self, stuffing='pork!', volume='1'): |
| self.filling = str(filling) | | self.stuffing = str(stuffing) |
| self.size = Fraction(size) if size else Fraction(0) | | self.volume = Fraction(volume) if volume else Fraction(0) |
| if self.size < 0: | | if self.volume < 0: |
| self.size = Fraction(0) | | self.volume = Fraction(0) |
| | | |
| def __repr__(self): | | def __repr__(self): |
n | if self.size * self.FILLING_LENGTH < 1: | n | if self.volume * self.SLICE_SIZE < 1: |
| return '/|\n||\n||\n||\n\\|' | | return '/|\n||\n||\n||\n\\|' |
n | full_units = floor(self.size) | n | full_sausages = floor(self.volume) |
| remainder_length = int(self.size % self.UNIT_VOLUME * self.FILLI | | partial_sausage_length = int(self.volume % self.FULL_SIZE * self |
| NG_LENGTH) | | .SLICE_SIZE) |
| sausages = [] | | sausage_parts = [] |
| for _ in range(full_units): | | for _ in range(full_sausages): |
| sausages.append(self._build_full_unit()) | | sausage_parts.append(self._create_full_sausage()) |
| if remainder_length > 0: | | if partial_sausage_length > 0: |
| sausages.append(self._build_partial_unit(remainder_length)) | | sausage_parts.append(self._create_partial_sausage(partial_sa |
| | | usage_length)) |
| return self._merge_units(sausages) | | return self._combine_sausages(sausage_parts) |
| | | |
n | def _build_full_unit(self): | n | def _create_full_sausage(self): |
| filling_content = (self.filling * (self.FILLING_LENGTH // len(se | | stuff = (self.stuffing * (self.SLICE_SIZE // len(self.stuffing) |
| lf.filling) + 1))[:self.FILLING_LENGTH] | | + 1))[:self.SLICE_SIZE] |
| return f'/------------\\\n|{filling_content}|\n|{filling_content | | return f'/------------\\\n|{stuff}|\n|{stuff}|\n|{stuff}|\n\\--- |
| }|\n|{filling_content}|\n\\------------/' | | ---------/' |
| | | |
n | def _build_partial_unit(self, filling_length): | n | def _create_partial_sausage(self, stuffing_length): |
| filling_content = (self.filling * (filling_length // len(self.fi | | stuff = (self.stuffing * (stuffing_length // len(self.stuffing) |
| lling) + 1))[:filling_length] | | + 1))[:stuffing_length] |
| return f'/{'-' * filling_length}|\n|{filling_content}|\n|{fillin | | return f'/{'-' * stuffing_length}|\n|{stuff}|\n|{stuff}|\n|{stuf |
| g_content}|\n|{filling_content}|\n\\{'-' * filling_length}|' | | f}|\n\\{'-' * stuffing_length}|' |
| | | |
n | def _merge_units(self, units): | n | def _combine_sausages(self, sausages): |
| rows = [unit.split('\n') for unit in units] | | rows = [sausage.split('\n') for sausage in sausages] |
| merged = [''.join(row) for row in zip(*rows)] | | combined = [''.join(row) for row in zip(*rows)] |
| return '\n'.join(merged) | | return '\n'.join(combined) |
| | | |
| def __abs__(self): | | def __abs__(self): |
n | return abs(self.size) | n | return abs(self.volume) |
| | | |
| def __add__(self, other): | | def __add__(self, other): |
n | combined_size = self.size + other.size | n | new_volume = self.volume + other.volume |
| return Sausage(self.filling, max(combined_size, Fraction(0))) | | return Sausage(self.stuffing, max(new_volume, Fraction(0))) |
| | | |
| def __sub__(self, other): | | def __sub__(self, other): |
n | reduced_size = self.size - other.size | n | new_volume = self.volume - other.volume |
| return Sausage(self.filling, max(reduced_size, Fraction(0))) | | return Sausage(self.stuffing, max(new_volume, Fraction(0))) |
| | | |
n | def __mul__(self, multiplier): | n | def __mul__(self, factor): |
| if isinstance(multiplier, int) and multiplier >= 0: | | if isinstance(factor, int) and factor >= 0: |
| return Sausage(self.filling, self.size * multiplier) | | return Sausage(self.stuffing, self.volume * factor) |
| raise ValueError('Multiplication multiplier must be a non-negati | | raise ValueError('Multiplication factor must be a non-negative i |
| ve integer.') | | nteger.') |
| | | |
n | def __rmul__(self, multiplier): | n | def __rmul__(self, factor): |
| return self.__mul__(multiplier) | | return self.__mul__(factor) |
| | | |
| def __truediv__(self, divisor): | | def __truediv__(self, divisor): |
| if isinstance(divisor, int) and divisor > 0: | | if isinstance(divisor, int) and divisor > 0: |
n | return Sausage(self.filling, self.size / divisor) | n | return Sausage(self.stuffing, self.volume / divisor) |
| raise ValueError('Divisor must be a positive integer.') | | raise ValueError('Division divisor must be a positive integer.') |
| | | |
| def __bool__(self): | | def __bool__(self): |
t | return self.size != 0 | t | return self.volume != 0 |