fillOne method

void fillOne()

Implementation

void fillOne() {
  h[0] = 1;
  for (int i = 1; i < 10; i++) {
    h[i] = 0;
  }
}