Skip to content

Instantly share code, notes, and snippets.

View Rag0n's full-sized avatar

Alexander Guschin Rag0n

View GitHub Profile
#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>
@Rag0n
Rag0n / tmux-cheatsheet.markdown
Last active November 14, 2015 18:05 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@Rag0n
Rag0n / FRP iOS Learning resources.md
Created December 18, 2015 13:55 — forked from JaviLorbada/FRP iOS Learning resources.md
The best FRP in iOS links.

Videos

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
}
}