Skip to content

Instantly share code, notes, and snippets.

@zid
Last active December 2, 2022 11:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zid/d4537f65e72af95a7e605e60297a2c3e to your computer and use it in GitHub Desktop.
Save zid/d4537f65e72af95a7e605e60297a2c3e to your computer and use it in GitHub Desktop.
while(1)
{
int o, m;
if(!fgets(line, 128, f))
break;
o = line[0] - 'A';
m = line[2] - 'X';
sum += ((o==m)+(((o^2)-!!(o^2)==m)<<1))*3+m+1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment