Skip to content

Instantly share code, notes, and snippets.

@walkingtospace
walkingtospace / test.json
Created January 5, 2023 06:10
Github push webhook event payload example
{
"event": "push",
"payload": {
"ref": "refs/heads/master",
"before": "1214900eca16aa54d97d062e7b72261616fd53aa",
"after": "40a717b3644e2ddec52cf6c8bfa436767bf0704e",
"repository": {
"id": 17892893,
"node_id": "MDEwOlJlcG9zaXRvcnkxNzg5Mjg5Mw==",
"name": "codecombat",
@walkingtospace
walkingtospace / gist:80fc2f995431226bfe7b
Created April 29, 2015 22:27
Find majority(improved)
//assume object is int
int findMajority(vector<int> input) {
vector<int> temp;
if (input.size() == 0) return NOMAJORITY;
else if (input.size() == 1) return input[0];
else if (input.size() == 2) {
if (input[0] == input[1]) return input[0];
else return NOMAJORITY;
}
struct Node
{
int score;
Node* left;
Node* right;
};
//M(r,k) returns the maximum sum of score of size k from root r. M(r,k) = max( M(l,i), M(r,j)); i+j = k and i,j>0
int findMaxScore(Node* node, int k) {
vector<int> sum;
/*
https://leetcode.com/problems/happy-number/
For cycle detection:
1. Floyd's tortoise and rabbit algorithm (two pointers; slow and fast)
2. Brant's algorithm
3. using Hash table to detect duplicated values;
*/
class Solution {
/*
https://leetcode.com/problems/palindrome-number/
exception case : negative, zero
filter x < 0 || X < 10 || x % 10
create int y by traversing x in reverse order
x = 12321, y = 0
y = 1=>12=>123=>1232=>12321
@walkingtospace
walkingtospace / gist:16d0ebd52929374411c5
Created April 5, 2015 07:02
container-with-most-water
/*
https://leetcode.com/problems/container-with-most-water/
Did I clearly understand the problem?
Is the given input is sorted? No
| |
| | | |
/*
https://leetcode.com/problems/find-peak-element/
O(log n)
key point: getting a sense of that current maximum is a strong nominate of local maximum.
1. pick middle of the give subarray
2. compare both neighbor of current maximum
3. ignore smaller side. (why? -> current maximum could be a local maximum)
4. 1->3 iterate until the length of the given subarray is less than 1
@walkingtospace
walkingtospace / gist:f58ac0f00668646586d4
Created April 2, 2015 23:07
find-minimum-in-rotated-sorted-array
/*
https://leetcode.com/problems/find-minimum-in-rotated-sorted-array/
//Linear search: O(n)
class Solution {
public:
int findMin(vector<int> &num) {
int min = INT_MAX;
https://leetcode.com/problems/number-of-1-bits/
class Solution {
public:
int hammingWeight(uint32_t n) {
int size = 32; //uint32
int numOne = 1;
int cnt = 0;
for(int i=0; i<size ; ++i) {
@walkingtospace
walkingtospace / gist:b7ccdabf3f5c317da76e
Last active August 29, 2015 14:18
Excel sheet column number
https://leetcode.com/problems/excel-sheet-column-number/
//Key point: this problem is just 26th-decimal transformation.
//input : only capital? no exception?
//O(l); l is the length of the given input
//test case
//A, Z, AA, BB, AAA