Skip to content

Instantly share code, notes, and snippets.

@qnnnnez
qnnnnez / main.cpp
Created March 18, 2017 06:27
全组合 in C++
#include <string>
#include <vector>
#include <iostream>
using namespace std;
int combinations(int n, int k)
{
int result = 1;
@qnnnnez
qnnnnez / fakeuwp.html
Created March 4, 2017 03:58
模仿 UWP 磁贴的 3D 效果风格
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Fake UWP</title>
<style>
#viewport
{