Leap, Difference of Squares, Grains, Collatz Conjecture, Queen Attack, Darts, Hamming, and Space Age completed yesterday. Binary and Linked List completed today.
19 lines
237 B
C
19 lines
237 B
C
#ifndef SPACE_AGE_H
|
|
#define SPACE_AGE_H
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef enum planet {
|
|
MERCURY,
|
|
VENUS,
|
|
EARTH,
|
|
MARS,
|
|
JUPITER,
|
|
SATURN,
|
|
URANUS,
|
|
NEPTUNE,
|
|
} planet_t;
|
|
|
|
float age(planet_t planet, int64_t seconds);
|
|
|
|
#endif
|