Leap, Difference of Squares, Grains, Collatz Conjecture, Queen Attack, Darts, Hamming, and Space Age completed yesterday. Binary and Linked List completed today.
8 lines
87 B
C
8 lines
87 B
C
#ifndef LEAP_H
|
|
#define LEAP_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
bool leap_year(int year);
|
|
|
|
#endif
|