Skip to content

Instantly share code, notes, and snippets.

View kiemrong08's full-sized avatar

Quan Tien kiemrong08

View GitHub Profile
@kiemrong08
kiemrong08 / 1
Created February 20, 2016 10:10
#dota2 #hack
http://ensage-forum.ru/account-confirmation/9464/email?c=--rIZSdF2fjSxYbK
@kiemrong08
kiemrong08 / bash-cheatsheet.sh
Created June 8, 2017 00:43 — forked from LeCoupa/bash-cheatsheet.sh
Bash CheatSheet for UNIX Systems
#!/bin/bash
#####################################################
# Name: Bash CheatSheet for Mac OSX
#
# A little overlook of the Bash basics
#
# Usage:
#
# Author: J. Le Coupanec
# Date: 2014/11/04

Keybase proof

I hereby claim:

  • I am kiemrong08 on github.
  • I am quanntvt (https://keybase.io/quanntvt) on keybase.
  • I have a public key ASCg31kxJsgBlP3Vp7xtMF4QOkuqKtXsEvs3DGL-FVDCQgo

To claim this, I am signing this object:

@kiemrong08
kiemrong08 / factorialbig.cpp
Created March 28, 2020 16:57
#thuattoan #giaithua
#include<iostream>
using namespace std;
#define MAX 500
int multiply(int x, int res[], int res_size);
void factorial(int n)
{
int res[MAX];
class Solution {
public int[] twoSum(int[] nums, int target) {
Map<Integer,Integer> map=new HashMap<>();
int arr[]=new int [2];
for(int i=0;i<nums.length;i++) {