adventofcode/2020/2/parse_idk_two.c

32 lines
593 B
C
Raw Normal View History

2022-12-01 21:01:59 +01:00
#include <stdio.h>
#include <stdlib.h>
int main(void) {
FILE *fp;
2022-12-01 21:01:59 +01:00
char line[255];
2022-12-01 21:01:59 +01:00
int valid = 0;
fp = fopen("input", "r");
2022-12-01 21:01:59 +01:00
if(fp == NULL) {
perror("Error opening file.");
return(-1);
}
while(fgets(line, sizeof(line), fp) != NULL) {
2022-12-01 21:01:59 +01:00
int start, end;
char subject;
2022-12-01 21:01:59 +01:00
char password[64];
2022-12-01 21:01:59 +01:00
sscanf(line, "%d-%d %c: %s\n", &start, &end, &subject, password);
if(password[start - 1] == subject && password[end - 1] != subject ||
password[end - 1] == subject && password[start - 1] != subject)
valid++;
}
fclose(fp);
printf("There are %d valid passwords\n", valid);
}