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

Block or report JarKz

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

Hi there, I'm Pavel!


Anurag's GitHub stats Top Langs

Thank you for visiting my profile, see you next time!

Pinned Loading

  1. TBot TBot Public

    Comfortable and powerful framework for Telegram API bot

    Java 1

  2. dotfiles dotfiles Public

    My dotfiles

    Shell

  3. Flat linked list for any values, bas... Flat linked list for any values, based on Vec<Node<T>>. Not guarantees for persistency. Implemented traits Eq, PartialEq, From, Index, IndexMut, Iter, IntoIter.
    1
    #[derive(Debug)]
    2
    pub struct Node<T> {
    3
        value: T,
    4
        next: Option<usize>,
    5
    }
  4. Python implementation of https://en.... Python implementation of https://en.m.wikipedia.org/wiki/Knuth%27s_Algorithm_X.
    1
    import sys
    2
    from copy import copy
    3
    
    
    4
    Matrix = list[list[int]]
    5