- Prague, Czech republic
-
09:38
(UTC +01:00) - @viktorbezdek
Pinned Loading
-
Imperative Game of Life
Imperative Game of Life 1function conwaysGameOfLife(board) {
2var newBoard = []
3for (var i = 0; i < board.length; i++) {
4newBoard.push([])
5for (var j = 0; j < board[i].length; j++) {
-
definitive-llm-writing-style-guide
definitive-llm-writing-style-guide PublicThe Definitive Guide to LLM Writing Styles
-
Slightly Functional Game of Life
Slightly Functional Game of Life 12function boardGet(arr, i, j) {
3if (i < 0 || j < 0 || i >= arr.length || j >= arr[i].length) {
4return 0
5}
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.