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

Block or report n7itro

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

Hi there 👋

Visitors

Pinned Loading

  1. Sudoku solver using backtracking alg... Sudoku solver using backtracking algorithm written in Nim
    1
    import strutils
    2
    
                  
    3
    var grid = [
    4
        [6, 0, 0, 0, 0, 4, 5, 3, 0],
    5
        [8, 0, 0, 0, 5, 0, 0, 0, 9],
  2. Advent of Code 2023 Day 1 - Nim Advent of Code 2023 Day 1 - Nim
    1
    import strutils, sequtils
    2
    
                  
    3
    var sum = 0
    4
    
                  
    5
    for line in lines "src/input.txt":