FEE Development Essentials JS Basic function call() and apply() func1.bind(thisObj,arg1...argn) Custom object prototype Serialize object via JSON functions Object oriented in javascript Inheritance APIs Nodejs Global object and variable Module Core m…
Part 1 reference:http://jaxenter.com/lambdas-in-java-8-part-1-49700.html Get to know lambda expressions in Java 8. Few things excite a community of software developers more than a new release of their chosen programming language or platform. Java dev…
Given an array nums of n integers and an integer target, are there elements a, b, c, and d in nums such that a + b + c+ d = target? Find all unique quadruplets in the array which gives the sum of target. Note: The solution set must not contain duplic…
Hyperpolyglot.org From Hyperpolyglot.org C++ Style Languages: C++, Objective-C, Java, C# a side-by-side reference sheet grammar and invocation | variables and expressions | arithmetic and logic | strings | regexes | dates and time arrays | dictionari…
1.Iterate through the "entrySet" like so: public static void printMap(Map mp) { Iterator it = mp.entrySet().iterator(); while (it.hasNext()) { Map.Entry pair = (Map.Entry)it.next(); System.out.println(pair.getKey() + " = " + pair.getVa…