Skip to content

Block or report rtneto

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
rtneto/README.md

Pinned Loading

  1. rtneto rtneto Public

    The repository for my website (and profile README)

    JavaScript

  2. ccomplete ccomplete Public

    learning C

    C

  3. gameoflife gameoflife Public

    Conway's game of life simple implementation with Python

    Python

  4. nvim nvim Public

    configuration

    Lua

  5. Get neighbors from an element in a 2... Get neighbors from an element in a 2d array
    1
    def get_neighbors(array, x, y):
    2
        neighbors = []
    3
        if not is_inside(array, x, y):
    4
            return []
    5