Grabbed the data of leading VC's in silicon valley using Crunchbase API.
The VC's data collected :
- Accel Partners
- Andersson Horowitz 3)General Catalyst 4)Greylock
- Klien Partners
{ | |
"_id": { | |
"$oid": "5a3eae93734d1d12b6754044" | |
}, | |
"business": "kree photography", | |
"website": "http://www.kreephotography.com/", | |
"widgets": [{ | |
"yelp": { | |
"url": "https://www.yelp.com/biz/kree-photography-pleasanton-3", | |
"average_review": "4.3", |
change this | |
for (count; count < arraySize-1; count++) { | |
for (secondCounter = count + 1; secondCounter < arraySize; secondCounter++) { | |
if (rec[count].salary > rec[secondCounter].salary) { | |
temp = rec[count].salary; | |
rec[count].salary = rec[secondCounter].salary; | |
rec[secondCounter].salary = temp; | |
} | |
} | |
} |
void payrollProcess(double & hoursWorked, double & hourlyWage, double & grossPay, double & FITW_Exemptions, double & ficaTaxAmt, int & exemptionsQty, char & maritalStatus, double & totalExemptions) { | |
int maxHours = 40; | |
double overtimeHours = 0, adjustedIncome = 0; | |
bool error = false; | |
// calculating overtime hours | |
if (hoursWorked > maxHours) { | |
overtimeHours = hoursWorked - maxHours; | |
} |
// Given a list of word lists How to print all sentences possible taking one word from a list at a time via recursion | |
// http://www.geeksforgeeks.org/recursively-print-all-sentences-that-can-be-formed-from-list-of-word-lists/ | |
import java.util.ArrayList; | |
import java.util.Arrays; | |
import java.util.List; | |
public class RecursiveList { | |
public static void main(String[] args) { | |
List<String> l1 = Arrays.asList(new String[]{"you","are"}); |
# Given a source word, target word and an English dictionary, transform the source word to target by | |
# changing/adding/removing 1 character at a time, while all intermediate words being valid English words. | |
# Return the transformation chain which has the smallest number of intermediate words. | |
# - See more at: http://www.ardendertat.com/2011/10/17/programming-interview-questions-8-transform-word/ | |
#this is pseudo code, untested | |
dict = Hash.new | |
build_dict(dict_arr) |
Grabbed the data of leading VC's in silicon valley using Crunchbase API.
The VC's data collected :