Skip to content

Instantly share code, notes, and snippets.

@JSpiner
Last active July 14, 2018 03:45
Show Gist options
  • Save JSpiner/01e8a4e23b6a084321c46080f18deaee to your computer and use it in GitHub Desktop.
Save JSpiner/01e8a4e23b6a084321c46080f18deaee to your computer and use it in GitHub Desktop.
짝코딩 실습 baseline
class Solution {
public Solution() {
}
public int[][] markMine(int n, int[][] map) {
return map;
}
public static void main(String[] args) {
int[][] data = {
{-1, 0, -1, 0, 0},
{0, 0, 0, 0, 0,},
{-1, 0, 0, -1, 0},
{0, 0, 0, 0, 0},
{0, 0, 0, 0, 0}
};
new Solution().markMine(data.length, data);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment