Skip to content

Instantly share code, notes, and snippets.

package main
import (
"bufio"
"fmt"
"os"
"sort"
"unicode"
)
@bor2com
bor2com / index.html
Created July 29, 2013 15:57
Sample 3
<!DOCTYPE html>
<html><head>
<meta charset="UTF-8">
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<style>
.edge line {
stroke-width : 0.27;
}
.vertex circle {
stroke : black;
@bor2com
bor2com / 1 Hello World.cpp
Last active December 20, 2015 05:39
Sample sources.
// Just printing a message.
#include <iostream>
using namespace std;
int main() {
cout << "Hello" << " " << "world";
cout << "Hello world";
return 0;
}
@bor2com
bor2com / 1000.fs
Created February 24, 2013 10:36
Timus Online Judge Samples: 1000. A + B Problems 1001. Reverse Roots
let input = Array.map int (System.Console.ReadLine().Split())
printfn "%d" (int(input.[0]) + int(input.[1]))