Skip to content

Instantly share code, notes, and snippets.

View T2hhbmEK's full-sized avatar

T2hhbmEK T2hhbmEK

  • China
  • 10:01 (UTC +08:00)
View GitHub Profile
@T2hhbmEK
T2hhbmEK / TwoSum.c
Created September 25, 2015 18:40
Two Sum
/**
* Note: The returned array must be malloced, assume caller calls free().
*/
typedef struct hashTableNode {
int val;
int idx;
struct hashTableNode* next;
} hashTableNode;
@T2hhbmEK
T2hhbmEK / 2014-12-26-opencv.md
Last active August 29, 2015 14:12
Setup OpenCv 24.10 with Visual Studio 2013

Setup OpenCv 24.10 with Visual Studio 2013

  1. 安装OpenCv到"C:\opencv"

  2. 编辑环境变量

  • 命令提示符(管理员)