mirror of
https://github.com/ArthurDanjou/exercism-rust.git
synced 2026-01-14 12:14:35 +01:00
49 lines
968 B
Markdown
49 lines
968 B
Markdown
# Gigasecond
|
|
|
|
Welcome to Gigasecond on Exercism's Rust Track.
|
|
If you need help running the tests or submitting your code, check out `HELP.md`.
|
|
|
|
## Instructions
|
|
|
|
Given a moment, determine the moment that would be after a gigasecond
|
|
has passed.
|
|
|
|
A gigasecond is 10^9 (1,000,000,000) seconds.
|
|
|
|
If you're unsure what operations you can perform on `PrimitiveDateTime` take a look at the [time crate](https://docs.rs/time) which is listed as a dependency in the `Cargo.toml` file for this exercise.
|
|
|
|
## Source
|
|
|
|
### Created by
|
|
|
|
- @IanWhitney
|
|
|
|
### Contributed to by
|
|
|
|
- @andy5995
|
|
- @ashleygwilliams
|
|
- @cbzehner
|
|
- @coriolinus
|
|
- @cwhakes
|
|
- @EduardoBautista
|
|
- @efx
|
|
- @ErikSchierboom
|
|
- @houhoulis
|
|
- @IanWhitney
|
|
- @janczer
|
|
- @leoyvens
|
|
- @lutostag
|
|
- @mkantor
|
|
- @nfiles
|
|
- @NieDzejkob
|
|
- @ocstl
|
|
- @petertseng
|
|
- @rofrol
|
|
- @sacherjj
|
|
- @stringparser
|
|
- @xakon
|
|
- @ZapAnton
|
|
|
|
### Based on
|
|
|
|
Chapter 9 in Chris Pine's online Learn to Program tutorial. - http://pine.fm/LearnToProgram/?Chapter=09 |