[leetcode] GameofLife
https://leetcode.com/problems/game-of-life/ Game of Life - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com import java.util.Arrays; public class GameofLife { public static void main(String[] args) { gameOfLife(new int[][] { {0,1,0}, {0,0,1}, {1,1,1}, {0,0,0} }); } // Any live cell ..
2020. 11. 29.