Leap, Difference of Squares, Grains, Collatz Conjecture, Queen Attack, Darts, Hamming, and Space Age completed yesterday. Binary and Linked List completed today.
13 lines
154 B
C
13 lines
154 B
C
#ifndef DARTS_H
|
|
#define DARTS_H
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct {
|
|
float x;
|
|
float y;
|
|
} coordinate_t;
|
|
|
|
uint8_t score(coordinate_t position);
|
|
|
|
#endif
|