Last active
July 14, 2018 03:45
-
-
Save JSpiner/01e8a4e23b6a084321c46080f18deaee to your computer and use it in GitHub Desktop.
짝코딩 실습 baseline
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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