Skip to content
View viktorbezdek's full-sized avatar
Block or Report

Block or report viktorbezdek

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
viktorbezdek/README.md

Pinned

  1. Imperative Game of Life Imperative Game of Life
    1
    function conwaysGameOfLife(board) {
    2
      var newBoard = []
    3
      for (var i = 0; i < board.length; i++) {
    4
        newBoard.push([])
    5
        for (var j = 0; j < board[i].length; j++) {
  2. definitive-llm-writing-style-guide definitive-llm-writing-style-guide Public

    The Definitive Guide to LLM Writing Styles

  3. Slightly Functional Game of Life Slightly Functional Game of Life
    1
    
                  
    2
    function boardGet(arr, i, j) {
    3
      if (i < 0 || j < 0 || i >= arr.length || j >= arr[i].length) {
    4
        return 0
    5
      }