Thank you for visiting my profile, see you next time!
Software Developer
- Belarus
-
20:03
(UTC +03:00) - https://t.me/jarkzz
- in/jarkz
Pinned Loading
-
-
Python implementation of https://en....
Python implementation of https://en.m.wikipedia.org/wiki/Knuth%27s_Algorithm_X. 1import sys
2from copy import copy
34Matrix = list[list[int]]
5 -
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)]
2pub struct Node<T> {
3value: T,
4next: Option<usize>,
5}
-
Simple implementation of LinkedList<...
Simple implementation of LinkedList<T> with unsafe Rust. 1use std::{
2marker::PhantomData,
3ops::{Index, IndexMut},
4ptr::NonNull,
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.