-
-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
260 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Instructions | ||
|
||
Given an age in seconds, calculate how old someone would be on: | ||
|
||
- Mercury: orbital period 0.2408467 Earth years | ||
- Venus: orbital period 0.61519726 Earth years | ||
- Earth: orbital period 1.0 Earth years, 365.25 Earth days, or 31557600 seconds | ||
- Mars: orbital period 1.8808158 Earth years | ||
- Jupiter: orbital period 11.862615 Earth years | ||
- Saturn: orbital period 29.447498 Earth years | ||
- Uranus: orbital period 84.016846 Earth years | ||
- Neptune: orbital period 164.79132 Earth years | ||
|
||
So if you were told someone were 1,000,000,000 seconds old, you should | ||
be able to say that they're 31.69 Earth-years old. | ||
|
||
If you're wondering why Pluto didn't make the cut, go watch [this YouTube video][pluto-video]. | ||
|
||
Note: The actual length of one complete orbit of the Earth around the sun is closer to 365.256 days (1 sidereal year). | ||
The Gregorian calendar has, on average, 365.2425 days. | ||
While not entirely accurate, 365.25 is the value used in this exercise. | ||
See [Year on Wikipedia][year] for more ways to measure a year. | ||
|
||
[pluto-video]: https://www.youtube.com/watch?v=Z_2gbGXzFbs | ||
[year]: https://en.wikipedia.org/wiki/Year#Summary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"authors": [ | ||
"BNAndras" | ||
], | ||
"files": { | ||
"solution": [ | ||
"space-age.jl" | ||
], | ||
"test": [ | ||
"runtests.jl" | ||
], | ||
"example": [ | ||
".meta/example.jl" | ||
] | ||
}, | ||
"blurb": "Given an age in seconds, calculate how old someone is in terms of a given planet's solar years.", | ||
"source": "Partially inspired by Chapter 1 in Chris Pine's online Learn to Program tutorial.", | ||
"source_url": "https://pine.fm/LearnToProgram/?Chapter=01" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
function onEarth(seconds::Integer) | ||
seconds / 31557600 | ||
end | ||
|
||
function onMercury(seconds::Integer) | ||
onEarth(seconds) / 0.2408467 | ||
end | ||
|
||
function onVenus(seconds::Integer) | ||
onEarth(seconds) / 0.61519726 | ||
end | ||
|
||
function onMars(seconds::Integer) | ||
onEarth(seconds) / 1.8808158 | ||
end | ||
|
||
function onJupiter(seconds::Integer) | ||
onEarth(seconds) / 11.862615 | ||
end | ||
|
||
function onSaturn(seconds::Integer) | ||
onEarth(seconds) / 29.447498 | ||
end | ||
|
||
function onUranus(seconds::Integer) | ||
onEarth(seconds) / 84.016846 | ||
end | ||
|
||
function onNeptune(seconds::Integer) | ||
onEarth(seconds) / 164.79132 | ||
end |
Oops, something went wrong.