exercism-rust/gigasecond
2023-08-21 14:12:35 -04:00
..
.exercism init commit 2023-08-21 13:50:14 -04:00
src Finish gigasecond 2023-08-21 14:12:35 -04:00
tests Finish gigasecond 2023-08-21 14:12:35 -04:00
.gitignore init commit 2023-08-21 13:50:14 -04:00
Cargo.toml init commit 2023-08-21 13:50:14 -04:00
HELP.md init commit 2023-08-21 13:50:14 -04:00
README.md init commit 2023-08-21 13:50:14 -04:00

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 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