I hereby claim:
- I am lgo on github.
- I am xlegoz (https://keybase.io/xlegoz) on keybase.
- I have a public key ASCxXa_qKMdSgjCBS-yMUxezx9auonu320_y7e2-bRtxRgo
To claim this, I am signing this object:
| import java.io.BufferedReader; | |
| import java.io.FileReader; | |
| import java.io.IOException; | |
| public class Matrix { | |
| static int[][] matrix = new int[5][5]; | |
| static int max = 0; | |
| import java.io.BufferedReader; | |
| import java.io.BufferedWriter; | |
| import java.io.FileReader; | |
| import java.io.FileWriter; | |
| public class S1 | |
| { | |
| public static void main(String[] args) throws Exception { |
| import java.io.BufferedReader; | |
| import java.io.BufferedWriter; | |
| import java.io.FileReader; | |
| import java.io.FileWriter; | |
| public class Sol1 { | |
| import java.io.BufferedReader; | |
| import java.io.BufferedWriter; | |
| import java.io.FileReader; | |
| import java.io.FileWriter; | |
| import java.util.ArrayList; | |
| import java.util.HashMap; | |
| import java.util.List; | |
| import java.util.Map; | |
| public class Sol4 { |
| #!/usr/bin/env python | |
| """ | |
| Provide useful alembic information after switching branches. | |
| """ | |
| import argparse | |
| import subprocess | |
| import os | |
| import os.path | |
| import py.path |
I hereby claim:
To claim this, I am signing this object:
| # Redis lease pseudo-code | |
| FUNCTION INIT_LEASES(lock_key, amt) | |
| FOR i := 0; i < amt; i++ DO | |
| LPUSH(lock_key, 0) | |
| END | |
| END | |
| FUNCTION ACQUIRE_LEASE(lock_key) |
| package main | |
| import ( | |
| "database/sql" | |
| "log" | |
| "time" | |
| _ "github.com/lib/pq" | |
| ) |
| case {1, "hi"} | |
| when {1, .empty?} then "OK" | |
| end | |
| t = {1, "hi"} | |
| case t | |
| when {1, "h"} then "OK" | |
| end | |
| case t # causes "unterminated tuple literal" on the line below |
| // literal string: only contents, read-references for all exact strings in the file. | |
| function literalString(person) { | |
| return "string"; | |
| } | |
| "string"; | |
| "string"; | |
| "string abc"; | |
| // literal numbers: nothing |