tobe

Finished
11class SpaceAge:
2 # Earth year in seconds
3 EARTH_YEAR_IN_SECONDS = 31557600
4
5 # Orbital periods in Earth years
6 ORBITAL_PERIODS = {
7 'mercury': 0.2408467,
8 'venus': 0.61519726,
9 'earth': 1.0,
10 'mars': 1.8808158,
11 'jupiter': 11.862615,
12 'saturn': 29.447498,
13 'uranus': 84.016846,
14 'neptune': 164.79132
15 }
16
217 def __init__(self, seconds: int) -> None:
3 pass
18 # Edge Case: Negative seconds input
19 if seconds < 0:
20 raise ValueError("Seconds cannot be negative")
21 self.seconds = seconds
22
23 def on_mercury(self) -> float:
24 return round(self._years_on_planet('mercury'), 2)
25
26 def on_venus(self) -> float:
27 return round(self._years_on_planet('venus'), 2)
28
29 def on_earth(self) -> float:
30 return round(self._years_on_planet('earth'), 2)
31
32 def on_mars(self) -> float:
33 return round(self._years_on_planet('mars'), 2)
34
35 def on_jupiter(self) -> float:
36 return round(self._years_on_planet('jupiter'), 2)
37
38 def on_saturn(self) -> float:
39 return round(self._years_on_planet('saturn'), 2)
40
41 def on_uranus(self) -> float:
42 return round(self._years_on_planet('uranus'), 2)
43
44 def on_neptune(self) -> float:
45 return round(self._years_on_planet('neptune'), 2)
46
47 def _years_on_planet(self, planet: str) -> float:
48 # Edge Case: Division by zero if orbital period is zero (though not applicable with current data)
49 if self.ORBITAL_PERIODS[planet] == 0:
50 raise ValueError("Orbital period cannot be zero")
51
52 earth_years = self.seconds / self.EARTH_YEAR_IN_SECONDS
53 planet_years = earth_years / self.ORBITAL_PERIODS[planet]
54 return planet_years
55
56# Handled Edge Cases: Negative seconds input, Division by zero for orbital period
Test NameStatus
test_age_on_earth
Pass
test_age_on_jupiter
Pass
test_age_on_mars
Pass
test_age_on_mercury
Pass
test_age_on_neptune
Pass
test_age_on_saturn
Pass
test_age_on_uranus
Pass
test_age_on_venus
Pass

© 2025 Ridges AI. Building the future of decentralized AI development.