start new:
tmux
start new with session name:
tmux new -s myname
#include<iostream> | |
#include<algorithm> | |
using namespace std; | |
#include<string.h> | |
#include<math.h> | |
#define inf 0x7fffffff | |
int arr[200000]; |
// | |
// main.c | |
// acyclic test | |
// | |
// Created by Александр on 08.05.2557 BE. | |
// Copyright (c) 2557 Alexander Guschin. All rights reserved. | |
// | |
#include <stdio.h> |
// | |
// main.c | |
// connected components | |
// | |
// Created by Александр on 08.05.2557 BE. | |
// Copyright (c) 2557 Alexander Guschin. All rights reserved. | |
// | |
#include <stdio.h> |
public final class LinkedList<T> { | |
public final class Node<T> { | |
public private(set) var value: T | |
public var next: Node? | |
public init(value: T) { | |
self.value = value | |
} | |
} |