Search found 1 match

by clienn
Thu Mar 07, 2013 6:49 pm
Forum: Volume 101 (10100-10199)
Topic: 10189 - Minesweeper
Replies: 418
Views: 124931

Re: 10189 - Minesweeper

I have tried all the test inputs I found here and everything seems to be working fine but I still get WA. Can anyone help me pinpoint the problem?
Here is my code:

#include <stdio.h>
#include <stdlib.h>

#define MINE '*'

int countMines(int x, int y, int w, int h);
char grid[105][105] = {'\0 ...

Go to advanced search