I hereby claim:
- I am qiuwei on github.
- I am wqiu (https://keybase.io/wqiu) on keybase.
- I have a public key ASBTOKMRrTDXZVGtPuNEVDa5htxnzDrklV5daaL6MGJPOgo
To claim this, I am signing this object:
#%% | |
import glob | |
import os | |
import datetime | |
import tiledb | |
import pandas as pd | |
from tiledb.dataframe_ import _tiledb_result_as_dataframe | |
from tqdm import tqdm | |
import time | |
import numpy as np |
[tool.poetry] | |
name = "poetry_debug" | |
version = "0.1.0" | |
description = "" | |
authors = ["Wei Qiu <[email protected]>"] | |
[tool.poetry.dependencies] | |
python = "^3.7" | |
pandas = "^1.1.3" |
[tool.poetry] | |
name = "test_poe" | |
version = "0.1.0" | |
description = "" | |
[tool.poetry.dependencies] | |
python = "^3.7" | |
allennlp = "^0.9.0" | |
[tool.poetry.dev-dependencies] |
/** | |
* Definition for undirected graph. | |
* class UndirectedGraphNode { | |
* int label; | |
* ArrayList<UndirectedGraphNode> neighbors; | |
* UndirectedGraphNode(int x) { label = x; neighbors = new ArrayList<UndirectedGraphNode>(); } | |
* }; | |
*/ | |
public class Solution { | |
/** |
class Frame { | |
int number; | |
int answer; | |
boolean done; | |
public Frame(int number, int answer, boolean done){ | |
this.number = number; | |
this.answer = answer; | |
this.done = done; | |
} |
/** | |
* Definition of TreeNode: | |
* public class TreeNode { | |
* public int val; | |
* public TreeNode left, right; | |
* public TreeNode(int val) { | |
* this.val = val; | |
* this.left = this.right = null; | |
* } | |
* } |
I hereby claim:
To claim this, I am signing this object:
<?xml version="1.0"?> | |
<connections> | |
<connection port="6379" executeTimeout="60000" host="localhost" name="berkeley" connectionTimeout="60000"/> | |
</connections> |
#include <iostream> | |
#include <string> | |
#include <vector> | |
#include <map> | |
#include <cstdio> | |
using namespace std; | |
enum WarriorType{ | |
DRAGON, NINJA, ICEMAN, LION, WOLF |
[Desktop Entry] | |
Categories=Qt;KDE;Utility; | |
Encoding=UTF-8 | |
Type=Application | |
Exec=kchmviewer %U | |
Icon=kchmviewer.png | |
Comment= | |
Terminal=0 | |
Name=KchmViewer | |
Comment=A viewer of CHM (MS-Help) files |