The snippets are under the CC-BY-SA license.

Creative Commons Attribution-ShareAlike 3.0

Logo

Programming-Idioms.org

  • The snippets are under the CC-BY-SA license.
  • Please consider keeping a bookmark
  • (instead of printing)
JS Java
1
Print a literal string on standard output
document.write("Hello World!");
Alternative implementation:
console.log('Hello World');
System.out.println("Hello World");
Alternative implementation:
System.out.printf("%s", "Hello, World!");
2
Loop to execute some code a constant number of times
for (let i = 0; i < 10; i++) {
  console.log("Hello");
}
Alternative implementation:
let count = 0;
while (count < 10) {
  count++; 
  console.log('Hello');
};
Alternative implementation:
[...Array(10)].forEach(() => console.log('Hello'))
Alternative implementation:
console.log( 'Hello\n'.repeat(10) )
for(int i=0;i<10;i++)
  System.out.println("Hello");
Alternative implementation:
System.out.print("Hello\n".repeat(10));
Alternative implementation:
for(int count = 1; count < 11; count++) {
	System.out.printf("%s%n", "Hello");
}
3
Like a function which doesn't return any value, thus has only side effects (e.g. Print to standard output)
var bli = function() { 
	console.log('Hello World!!!');
}
Alternative implementation:
function bli() { 
	console.log('Hello World!!!');
}
Alternative implementation:
let dog = 'Poodle';
const dogAlert = () => alert(dog);
void finish(String name){
  System.out.println("My job here is done. Goodbye " + name);
}
Alternative implementation:
private void methodName() {
	System.out.println("Hello, World!");
}
Alternative implementation:
private static void methodName() {
	System.out.println("Hello, World!");
}
4
Create a function which returns the square of an integer
function square(x) { 
	return x * x;
}
Alternative implementation:
const square = (x) => x * x;
Alternative implementation:
const square = n => n**2
Alternative implementation:
const square = (number) => Math.pow(number, 2);
int square(int x){
  return x*x;
}
Alternative implementation:
Function<Integer,Integer> squareFunction = x -> x * x;
Alternative implementation:
private int square(int value) {
	return value * value;
}
5
Declare a container type for two floating-point numbers x and y
var p = { x: 1.122, y: 7.45 };
Alternative implementation:
const point = { x: 1, y: 2 };
class Point{
  double x;
  double y;
}
Alternative implementation:
private class Point
{
	private final float x;
	private final float y;
	
	public Point(float x, float y)
	{
		this.x = x;
		this.y = y;
	}
	
	public float getX()
	{
		return this.x;
	}
	
	public float getY()
	{
		return this.y;
	}
}
Alternative implementation:
public record Point(double x, double y) { }
6
Do something with each item x of the list (or array) items, regardless indexes.
items.forEach((x) => {
    doSomething(x);
});
Alternative implementation:
for (x of items) {
	doSomething(x);
}
Alternative implementation:
items.forEach(doSomething)
Alternative implementation:
for (var i = 0; i<items.length; i++) {
  var x = items[i];
  doSomething(x);
}
Alternative implementation:
items.map(doSomething)
for (Item x: items) {
    doSomething(x);
}
Alternative implementation:
for(int i=0;i<items.length;i++){
	doSomething( items[i] );
}
Alternative implementation:
items.stream().forEach(item -> doSomething(item));
Alternative implementation:
for(T item : items) {
	System.out.println(item);
}
7
Print each index i with its value x from an array-like collection items
items.forEach((val, idx) => {
  console.log("index=" + idx + ", value=" + val);
});
Alternative implementation:
for (var i in items) {
   console.log("index=" + i + ", value=" + items[i]);
}
for (int i = 0; i < items.length; i++) {
    T x = items[i];
    System.out.printf("Item %d = %s%n", i, x);
}
Alternative implementation:
for (int i = 0; i < items.size(); i++) {
    T x = items.get(i);
    System.out.printf("Item %d = %s%n", i, x);
}
Alternative implementation:
int i = 0;
for(String x : items) {
	System.out.printf("%d %s%n", i, x);
	i++;
}
8
Create a new map object x, and provide some (key, value) pairs as initial content.
const x = {one: 1, two:2}
Alternative implementation:
const x = new Map();
x.set("one", 1);
x.set("two", 2);
Alternative implementation:
const x = new Map([["one",1],["two",2]]);
Map<String,Integer> x = new HashMap<>();
x.put("one", 1);
x.put("two", 2);
Alternative implementation:
final Map<String, Integer> x = new HashMap<String, Integer>() {{
    put("one", 1);
    put("two", 2);
    put("three", 3);
}};
9
The structure must be recursive because left child and right child are binary trees too. A node has access to children nodes, but not to its parent.
class Node {
  constructor (data) {
    this.data = data
    this.left = null
    this.right = null
  }
}
class BinTree<T extends Comparable<T>>{
   T value;
   BinTree<T> left;
   BinTree<T> right;
}
Alternative implementation:
interface Tree<T>{
    boolean search(T x);
}
class Nil<T extends Comparable<? super T>> implements Tree<T>{
    public boolean search(T x) { return false; }
}
class Node<T extends Comparable<? super T>> implements Tree<T> {
 T item;  Tree<T> left; Tree<T> right;
 public Node(T i, Tree<T> l, Tree<T> r) {
     item=i;  left=l;  right=r; }
 public boolean search(T x) {
     int cmp = x.compareTo(item);
     return cmp==0 || (cmp<0 && left.search(x)) || (cmp>0 && right.search(x));
 }
10
Generate a random permutation of the elements of list x
for (var i = x.length - 1; i > 0; i--) {
    var j = Math.floor(Math.random() * (i + 1));
    var temp = x[j];
    x[j] = x[i];
    x[i] = temp;
}
Collections.shuffle(x);
11
The list x must be non-empty.
x[Math.floor(Math.random() * x.length)]
Alternative implementation:
x[~~(Math.random() * x.length)];
x.get((int)(Math.random()*x.size()))
Alternative implementation:
x.get(ThreadLocalRandom.current().nextInt(0, x.size()))
Alternative implementation:
if(x != null && x.size() > 0) {
	Random random = new Random();
	T item = x.get(random.nextInt(x.size()));
}
12
Check if the list contains the value x.
list is an iterable finite container.
return list.indexOf(x) !== -1;
Alternative implementation:
return list.includes(x);
boolean contains(int[] list, int x){
  for(int y:list)
    if( y==x )
      return true;
  return false;
}
Alternative implementation:
boolean <T> contains(T[] list, T x){
  if( x==null){
    for(T y:list)
      if( y==null )
        return true;
  }else{
    for(T y:list)
      if( x.equals(y) )
        return true;
  }
  return false;
}
Alternative implementation:
list.contains(x)
13
Access each key k with its value x from an associative array mymap, and print them.
Object.entries(mymap).forEach(([key, value]) => {
	console.log('key:', key, 'value:', value);
});
Alternative implementation:
for (const key in mymap) {
    console.log('key:', key, 'value:', mymap[key]);
}
for (Map.Entry<Object, Object> entry : mymap.entrySet()) {
    Object k = entry.getKey();
    Object x = entry.getValue();
    System.out.println("Key=" + k + ", Value=" + x);
}
Alternative implementation:
mymap.forEach((k,x) -> System.out.println("Key=" + k + ", Value=" + x));
Alternative implementation:
for(Map.Entry<K, V> item : mymap.entrySet()) {
	K k = item.getKey();
	V x = item.getValue();
	System.out.printf("%s, %s%n", k, x);
}
14
Pick a random number greater than or equals to a, strictly inferior to b. Precondition : a < b.
a + (b-a) * Math.random();
Alternative implementation:
a + Math.random() * (b - a)
double pick(double a, double b){
	return a + (Math.random() * (b-a));
}
Alternative implementation:
Random random = new Random();
float value = random.nextFloat(a, b);
Alternative implementation:
Random random = new Random();
float value = (random.nextFloat() * (b - a)) + a;
15
Pick a random integer greater than or equals to a, inferior or equals to b. Precondition : a < b.
function pick(a, b) {
    return a + Math.floor(Math.random() * (b - a + 1));
}
int pick(int a, int b){
	return a + new Random().nextInt(b - a + 1);
}
16
Call a function f on every node of binary tree bt, in depth-first infix order
function dfs(bt) {
	if (bt === undefined) return;
	dfs(bt.left);
	f(bt);
	dfs(bt.right);
}
void dfs(BinTree bt) {
	if (bt.left != null) {
		dfs(bt.left);
        }
	f(bt);
	if (bt.right != null) {
		dfs(bt.right);
        }
}
Alternative implementation:
class BinTree {
	// ...

	void dfs() {
		if( left != null )
			left.dfs();
		f(this);
		if( right != null )
			right.dfs();
	}
}
Alternative implementation:
class BinTree<T> {
	// ...

	void dfs(Consumer<BinTree<T>> f) {
		if( left != null )
			left.dfs(f);
		f.accept(this);
		if( right != null )
			right.dfs(f);
	}
}
17
The structure must be recursive. A node may have zero or more children. A node has access to its children nodes, but not to its parent.
class Node {
  constructor (value, children = []) {
    this.value = value
    this.children = children
  }
}
class Tree<K,V> {
  K key;
  V deco;
  List<Tree<K,V>> children = new ArrayList<>();
}
18
Call a function f on every node of a tree, in depth-first prefix order
function DFS(f, root) {
	f(root)
	if (root.children) {
		root.children.forEach(child => DFS(f, child))
	}
}
19
Reverse the order of the elements of the list x.
This may reverse "in-place" and destroy the original ordering.
x = x.reverse();
static <T> void reverse(List<T> x){
	int n = x.size();
	for(int i=0;i<n/2;i++){
		T tmp = x.get(i);
		x.set(i, x.get(n-i-1));
		x.set(n-i-1, tmp);
	}
}
Alternative implementation:
Collections.reverse(x);
Alternative implementation:
Collections.reverse(x);
20
Implement a function search which looks for item x in a 2D matrix m.
Return indices i, j of the matching cell.
Think of the most idiomatic way in the language to return the two values at the same time.
function search(m, x) {
    for (var i = 0; i < m.length; i++) {
        for (var j = 0; j < m[i].length; j++) {
            if (m[i][j] == x) {
                return [i, j];
            }
        }
    }
    return false;
}
static class Position{
	int i;
	int j;
}

Position search(int[][] m, int x){
	for(int i=0;i<m.length;i++)
		for(int j=0;j<m[i].length;j++)
			if(m[i][j] == x){
				Position pos= new Position();
				pos.i = i;
				pos.j = j;
				return pos;
			}
	return null;
}
21
Swap the values of the variables a and b
var tmp = a;
a = b;
b = tmp;
Alternative implementation:
[a, b] = [b, a];
T tmp = a;
a = b;
b = tmp;
22
Extract the integer value i from its string representation s (in radix 10)
let i = parseInt(s, 10)
Alternative implementation:
const i = Number(s);
Alternative implementation:
const i = +s
int i = Integer.parseInt(s);
Alternative implementation:
int i = new Integer(s).intValue();
Alternative implementation:
Integer i = Integer.valueOf(s, 10);
23
Given a real number x, create its string representation s with 2 decimal digits following the dot.
num.toFixed(2)
String s = String.format("%.2f", x);
24
Declare a new string s and initialize it with the literal value "ネコ" (which means "cat" in japanese)
s = "ネコ";
String s = "ネコ";
25
Share the string value "Alan" with an existing running process which will then display "Hello, Alan"
{
  // in file worker.js
  onmessage = ({data}) => {
    console.log (`Hello, ${data}`)
  }
}
{
  // in file main.js
  const worker = new Worker ('worker.js')
  worker.postMessage ('Alan')
}
Alternative implementation:
if (isMainThread) {
  const worker = new Worker(new URL(import.meta.url));
  worker.postMessage('Alan');
} else {
  parentPort.once('message', (message) => {
    console.log(`Hello, ${message}`);
  });
}
https://gist.github.com/f7c174c53efaba4d8575
26
Declare and initialize a matrix x having m rows and n columns, containing real numbers.
var x = [];
for (var i = 0; i < m; i++) {
  x[i] = [];
}
Alternative implementation:
const x = new Array(m).fill(new Array(n).fill(Math.random()));
double[][] x = new double[m][n];
27
Declare and initialize a 3D array x, having dimensions boundaries m, n, p, and containing real numbers.
const x = new Array(m).fill(
  new Array(n).fill(
    new Array(p).fill(Math.random())
  )
)
double[][][] x = new double[m][n][p];
28
Sort the elements of the list (or array-like collection) items in ascending order of x.p, where p is a field of the type Item of the objects in items.
items.sort(function(a,b) {
  return compareFieldP(a.p, b.p);
});
Arrays.sort(items, new Comparator<Item>(){
	public int compare(Item a, Item b){
		return a.p - b.p;
	}
});
Alternative implementation:
Collections.sort(items, new Comparator<Item>(){
	@Override
	public int compare(Item a, Item b){
		return a.p - b.p;
	}
});
Alternative implementation:
items.stream().sorted(Comparator.comparing(x -> x.p))
29
Remove i-th item from list items.
This will alter the original list or return a new list, depending on which is more idiomatic.
Note that in most languages, the smallest valid value for i is 0.
let new_list = items.filter(function(val,idx,ary) { return idx != i });
Alternative implementation:
items.splice(i,1);
items.remove(i);
30
Launch the concurrent execution of procedure f with parameter i from 1 to 1000.
Tasks are independent and f(i) doesn't return any value.
Tasks need not run all at the same time, so you may use a pool.
for (let i = 1; i <= 1000; i++) setTimeout(() => f(i), 0);
final ExecutorService executor = Executors.newFixedThreadPool(NB_THREADS);
for (int i = 1; i <= 1000; i++) {
  executor.submit(() -> f(i));
}
executor.shutdown();
31
Create the recursive function f which returns the factorial of the non-negative integer i, calculated from f(i-1)
function f(i) {
   return i<2 ? 1 : i * f(i-1);
}
Alternative implementation:
const f = i => i === 0 ? 1 : i * f(i-1)
int f(int i) {
    if (i == 0)
        return 1;
    else
        return i * f(i - 1);
}
32
Create function exp which calculates (fast) the value x power n.
x and n are non-negative integers.
function exp(x, n) {
   if (n===0) return 1;
   if (n===1) return x;
   return n%2 ? x * exp(x*x, (n-1)/2)
              : exp(x*x, n/2);
}
Alternative implementation:
const exp = Math.pow;
int exp(int x, int n){
	if(n==0)
		return 1;
	if(n==1)
		return x;
	if(n%2==0)
		return exp(x*x, n/2);
	else
		return x * exp(x*x, (n-1)/2);
}
33
Assign to the variable x the new value f(x), making sure that no other thread may modify x between the read and the write.
let x = f(x)
synchronized(lock){
  x = f(x);
}
34
Declare and initialize a set x containing unique objects of type T.
let x = new Set();
Set<T> x = new HashSet<T>();
Alternative implementation:
Set<T> x = new HashSet<T>();
x.add(a);
x.add(b);
35
Implement a function compose (A -> C) with parameters f (A -> B) and g (B -> C), which returns the composition function g ∘ f
function compose(f,g){
    return function(x){
        return g(f(x));
    };
}
public Function<A, C> compose(Function<A, B> f, Function<B, C> g) {
   return x -> g.apply(f.apply(x));
}
Alternative implementation:
Function<Integer, Integer> addOne = i-> i + 1;
Function<Integer, String> toString = i-> i.toString();
Function<Integer, String> printIncremented = toString.compose(addOne);
36
Implement a function compose which returns composition function g ∘ f for any functions f and g having exactly 1 parameter.
function compose(f,g){
    return function(x){
        return g(f(x));
    };
}
Alternative implementation:
const compose = f => g => x => g(f(x));
    default <V> Function<V, R> compose(Function<? super V, ? extends T> before) {
        Objects.requireNonNull(before);
        return (V v) -> apply(before.apply(v));
    }
37
Transform a function that takes multiple arguments into a function for which some of the arguments are preset.
function curry (fn, scope) {
   
    scope = scope || window;
    
    // omit curry function first arguments fn and scope
    var args = Array.prototype.slice.call(arguments, 2);
    
    return function() {
	var trueArgs = args.concat(Array.prototype.slice.call(arguments, 0));
        fn.apply(scope, trueArgs);
    };
}
Alternative implementation:
const curry = (fn, ...initialArgs) => (...args) => fn(...initialArgs, ...args);

const add = (a, b) => a + b;

const add5 = curry(add, 5);

const result = add5(1) // 6
IntBinaryOperator simpleAdd = (a, b) -> a + b;
IntFunction<IntUnaryOperator> curriedAdd = a -> b -> a + b;
System.out.println(simpleAdd.applyAsInt(4, 5));
System.out.println(curriedAdd.apply(4).applyAsInt(5));
38
Find substring t consisting in characters i (included) to j (excluded) of string s.
Character indices start at 0 unless specified otherwise.
Make sure that multibyte characters are properly handled.
let t = s.substring(i, j);
Alternative implementation:
let t = s.slice(i, j);
String t = s.substring(i,j);
39
Set the boolean ok to true if the string word is contained in string s as a substring, or to false otherwise.
var ok = s.indexOf(word) !== -1;
Alternative implementation:
var ok = s.includes(word);
boolean ok = s.contains(word);
40
Declare a Graph data structure in which each Vertex has a collection of its neighbouring vertices.
class Graph{
  List<Vertex> vertices;

  static class Vertex{
    int id;
    List<Vertex> neighbours;
  }
}
Alternative implementation:
class Graph{
  Set<Vertex> vertices;

  static class Vertex{
    int id;
    Set<Vertex> neighbours;
  }
}
41
Create string t containing the same characters as string s, in reverse order.
Original string s must remain unaltered. Each character must be handled correctly regardless its number of bytes in memory.
var t = s.split("").reverse().join("");
String t = new StringBuilder(s).reverse().toString();
Alternative implementation:
String t = "";
char[] characters = s.toCharArray();
for(int index = s.length() - 1; index > -1; index--) {
	t += String.valueOf(characters[index]);
}
42
Print each item v of list a which is not contained in list b.
For this, write an outer loop to iterate on a and an inner loop to iterate on b.
OUTER:
for (var i in a) {
   for (var j in b) {
      if (a[i] === b[j]) {
         continue OUTER;
      }
   }
   console.log(a[i] + " not in the list");
}
mainloop: for(int v:a){
	for(int w:b){
		if(v==w)
			continue mainloop;
	}
	System.out.println(v);
}
43
Look for a negative value v in 2D integer matrix m. Print it and stop searching.
OUTER:
for (var i in m) {
   for (var j in m[i]) {
      if (m[i][j] < 0) {
         console.log("Negative value found: "+m[i][j]);
         break OUTER;
      }
   }
}
mainloop: for(int i=0;i<m.length;i++)
	for(int j=0;j<m[i].length;j++)
		if(m[i][j]<0){
			System.out.println(m[i][j]);
			break mainloop;
		}
44
Insert the element x at position i in the list s. Further elements must be shifted to the right.
s.splice(i, 0, x);
s.add(i, x);
45
Sleep for 5 seconds in current thread, before proceeding with the next instructions.
setTimeout(function(){
	// Instructions after delay
},5000);
Alternative implementation:
const sleep = ms => new Promise(resolve => setTimeout(resolve, ms));

await sleep(5000);
Alternative implementation:
await new Promise(r => setTimeout(r, 5000));
Thread.sleep(5000);
Alternative implementation:
TimeUnit.SECONDS.sleep(5);
46
Create string t consisting of the 5 first characters of string s.
Make sure that multibyte characters are properly handled.
let t = s.substring(0,5);
String t = s.substring(0,5);
47
Create string t consisting in the 5 last characters of string s.
Make sure that multibyte characters are properly handled.
var t = s.slice(-5);
String t = s;
if (s.length()>= 5)
	t = s.substring(s.length()-5);
48
Assign to variable s a string literal consisting in several lines of text, including newlines.
let s = "This is a very long string which needs \n" +
        "to wrap across multiple lines because \n" +
        "otherwise my code is unreadable.";
Alternative implementation:
let s = "This is a very long string which needs \
to wrap across multiple lines because \
otherwise my code is unreadable.";
Alternative implementation:
let s = `This is a very long string which needs 
to wrap across multiple lines because 
otherwise my code is unreadable.`;
String s = "This is a very long string which needs \n" +
           "to wrap across multiple lines because \n" +
           "otherwise my code is unreadable.";
Alternative implementation:
String s = """
This is a very long string which needs
to wrap across multiple lines because
otherwise my code is unreadable.
""";
Alternative implementation:
String lineSeparator = System.lineSeparator();
String s = "line1" + lineSeparator + "line2" + lineSeparator;
49
Build list chunks consisting in substrings of the string s, separated by one or more space characters.
let chunks = s.split(/ +/);
String[] chunks = s.split("\\s+");
Alternative implementation:
List<String> chunks = Arrays.asList(s.split("\\s+"));
50
Write a loop that has no end clause.
while (true) {
	// to infinity
}
Alternative implementation:
for(;;) {
	console.log('Oops')
}
for(;;){
	// Do something
}
Alternative implementation:
while(true) {
	// Do something	
}
51
Determine whether the map m contains an entry for the key k
k in m
Alternative implementation:
m.hasOwnProperty(k)
Alternative implementation:
_m.has(_k)
m.containsKey(k)
52
Determine whether the map m contains an entry with the value v, for some key.
Object.values(m).includes(v)
Alternative implementation:
[...m.values()].includes(v)
m.containsValue(v)
53
Concatenate elements of string list x joined by the separator ", " to create a single string y.
y = x.join(", ");
String y = String.join(", ", x);
Alternative implementation:
String y = "";
for(int index = 0; index < x.size(); index++) {
	if(index != 0) {
		y += ", ";
	}
	y += x.get(index);
}
54
Calculate the sum s of the integer list or array x.
var s = x.reduce((a, b) => a + b, 0);
Alternative implementation:
var s = x.reduce((a, b) => a + b)
int s = 0;
for (int i : x) {
  s += i;
}
55
Create the string representation s (in radix 10) of the integer value i.
var s = i.toString();
Alternative implementation:
var s = i + "";
String s=((Integer)i).toString();
Alternative implementation:
String s = Integer.toString(i);
Alternative implementation:
String s = String.valueOf(i);
Alternative implementation:
String s = "" + i;
Alternative implementation:
String s = String.format("%d", i);
56
Fork-join : launch the concurrent execution of procedure f with parameter i from 1 to 1000.
Tasks are independent and f(i) doesn't return any value.
Tasks need not run all at the same time, so you may use a pool.
Wait for the completion of the 1000 tasks and then print "Finished".
{
  // in file worker.js
  onmessage = f
}
{
  // in file main.js
  for (let i = 0; i < 1000; i++) {
    new Worker ('worker.js')
      .postMessage (i)
  }
}
Alternative implementation:
const tasks = [];
for (let i = 0; i < 1000; i++) {
  tasks.push(f(i));
}

await Promise.all(tasks);
console.log("Finished");
class Task implements Runnable {
	int i;
	Task(int i) {
		this.i = i;
	}
	@Override
	public void run() {
		f(i);
	}
}

ExecutorService executor = Executors.newFixedThreadPool(4);
for (int i = 1; i <= 1000; i++) {
	Task task = new Task(i);
	executor.submit(task);
}
executor.shutdown();
executor.awaitTermination(10L, TimeUnit.MINUTES);
System.out.println("Finished");
Alternative implementation:
ExecutorService executor = Executors.newFixedThreadPool(4);
for (int i = 1; i <= 1000; i++) {
	Task task = new Task(i);
	executor.submit(() -> f(i));
}
executor.awaitTermination(10L, TimeUnit.MINUTES);
System.out.println("Finished");
57
Create the list y containing the items from the list x that satisfy the predicate p. Respect the original ordering. Don't modify x in-place.
y = x.filter(p);
var y = x.stream().filter(p).collect(Collectors.toList());
58
Create string lines from the content of the file with filename f.
fs.readFile(f, (err, lines) => {
    if (err) {
        // Handle error...
    }

    // Work with `lines` here.
}
byte[] encoded = Files.readAllBytes(Paths.get(f));
String lines = new String(encoded, StandardCharsets.UTF_8);
59
Print the message "x is negative" to standard error (stderr), with integer x value substitution (e.g. "-2 is negative").
console.error(util.format("%d is negative", x));
Alternative implementation:
console.error(x, "is negative");
Alternative implementation:
console.error(`${x} is negative`);
System.err.format("%d is negative\n",x);
Alternative implementation:
System.err.printf("%d is negative", x);
60
Assign to x the string value of the first command line parameter, after the program name.
const x = process.argv[2]
String x = args[0];
61
Assign to the variable d the current date/time value, in the most standard type.
var d = Date.now();
Alternative implementation:
var d = new Date();
Instant d = Instant.now();
Alternative implementation:
long unixEpoch = System.currentTimeMillis();
String d = String.format("%1$tY-%1$tm-%1$td %1$tI:%1$tM:%1$tS", unixEpoch);
Alternative implementation:
long d = System.currentTimeMillis();
62
Set i to the first position of string y inside string x, if exists.

Specify if i should be regarded as a character index or as a byte index.

Explain the behavior when y is not contained in x.
let i = x.indexOf(y);
int i = x.indexOf(y);
63
Assign to x2 the value of string x with all occurrences of y replaced by z.
Assume occurrences of y are not overlapping.
var x2 = x.replace(new RegExp(y, 'g'), z);
Alternative implementation:
const x2 = x.replaceAll(y, z);
String x2 = x.replace(y, z);
64
Assign to x the value 3^247
let x = 3n ** 247n;
BigInteger x = new BigInteger("3", 10).pow(247);
65
From the real value x in [0,1], create its percentage string representation s with one digit after decimal point. E.g. 0.15625 -> "15.6%"
const s = Math.round (x * 1000) / 10 + '%'
Alternative implementation:
const percentFormatter = new Intl.NumberFormat('en-US', {
  style: 'percent',
  maximumSignificantDigits: 3
});

const s = percentFormatter.format(x);
String s = new DecimalFormat("0.0%").format(x);
Alternative implementation:
String s = String.format("%.1f%%", x * 100f);
66
Calculate the result z of x power n, where x is a big integer and n is a positive integer.
let z = x**n
BigInteger z = x.pow(n);
67
Calculate binom(n, k) = n! / (k! * (n-k)!). Use an integer type able to handle huge numbers.
const fac = x => x ? x * fac (x - 1) : x + 1
const binom = (n, k) => fac (n) / fac (k) / fac (n - k >= 0 ? n - k : NaN)
static BigInteger binom(int N, int K) {
    BigInteger ret = BigInteger.ONE;
    for (int k = 0; k < K; k++) {
        ret = ret.multiply(BigInteger.valueOf(N-k))
                 .divide(BigInteger.valueOf(k+1));
    }
    return ret;
}
68
Create an object x to store n bits (n being potentially large).
let x = new Buffer (Math.ceil (n / 8))
BitSet x = new BitSet(n);
69
Use seed s to initialize a random generator.

If s is constant, the generator output will be the same each time the program runs. If s is based on the current value of the system clock, the generator output will be different each time.
seed (s)
Random r = new Random(s);
70
Get the current datetime and provide it as a seed to a random generator. The generator sequence will be different at each run.
Math.random ()
Random rand = new Random(System.currentTimeMillis());
71
Basic implementation of the Echo program: Print all arguments except the program name, separated by space, followed by newline.
The idiom demonstrates how to skip the first argument if necessary, concatenate arguments as strings, append newline and print it to stdout.
console.log(process.argv.slice(2).join(" "));
public class Echo {
    public static void main(final String... args) {
        out.println(join(" ", args));
    }
}
73
Create a factory named fact for any sub class of Parent and taking exactly one string str as constructor parameter.
class Parent {
    constructor(str) {}
    fact(new_class, str) {
        if (new_class.prototype instanceof Parent) {
            return new new_class(str)
        }
    }
}

class Child extends Parent {}
74
Compute the greatest common divisor x of big integers a and b. Use an integer type able to handle huge numbers.
const gcd = (a, b) => b === 0 ? a : gcd (b, a % b)
BigInteger x = a.gcd(b);
75
Compute the least common multiple x of big integers a and b. Use an integer type able to handle huge numbers.
const gcd = (a, b) => b === 0 ? a : gcd (b, a % b)
let x = (a * b) / gcd(a, b)
BigInteger a = new BigInteger("123456789");
BigInteger b = new BigInteger("987654321");
BigInteger x = a.multiply(b).divide(a.gcd(b));
76
Create the string s of integer x written in base 2.

E.g. 13 -> "1101"
let s = x.toString(2);
String s = Integer.toBinaryString(x);
77
Declare a complex x and initialize it with value (3i - 2). Then multiply it by i.
var x = math.complex(-2, 3);
x = math.multiply(x, math.i);
Complex x = new Complex(-2.0, 3.0);
x = x.multiply(Complex.I);
78
Execute a block once, then execute it again as long as boolean condition c is true.
do {
   something();
} while (c);
do {
	someThing();
	someOtherThing();
} while(c);
79
Declare the floating point number y and initialize it with the value of the integer x .
let y = x + .0
int x = 10
float y = (float)x;
System.out.println(y);
Alternative implementation:
Float y = Float.parseFloat(String.valueOf(x));
80
Declare integer y and initialize it with the value of floating point number x . Ignore non-integer digits of x .
Make sure to truncate towards zero: a negative x must yield the closest greater integer (not lesser).
let y = BigInt (x | 0)
int y = (int)x;
81
Declare the integer y and initialize it with the rounded value of the floating point number x .
Ties (when the fractional part of x is exactly .5) must be rounded up (to positive infinity).
var y = Math.round(x);
long y = Math.round(x);
82
Find how many times string s contains substring t.
Specify if overlapping occurrences are counted.
let n = 0 // the number of occurences
let acc = s
let i
while ((i = acc.indexOf (t)) + 1) {
  n++
  acc = acc.slice (i + 1)
}
int count = StringUtils.countMatches(s, t);
Alternative implementation:
int count = 0;
Pattern pattern = Pattern.compile(String.format("(%s)", t));
Matcher matcher = pattern.matcher(s);
while(matcher.find()) {
	count++;
}
Alternative implementation:
int count = 0;
Pattern pattern = Pattern.compile(String.format("(%s)", t), Pattern.CASE_INSENSITIVE);
Matcher matcher = pattern.matcher(s);
while(matcher.find()) {
	count++;
}
83
Declare regular expression r matching strings "http", "htttp", "httttp", etc.
const r = /htt+p/
Pattern r = Pattern.compile("htt+p");
84
Count number c of 1s in the integer i in base 2.

E.g. i=6 → c=2
const c = i.toString(2).replace(/[^1]/g, '').length
int c = Integer.bitCount(i);
Alternative implementation:
int c = 0;
for(char character : Integer.toBinaryString(i).toCharArray()) {
	if(character == '1') {
		c++;
	}
}
85
Write boolean function addingWillOverflow which takes two integers x, y and return true if (x+y) overflows.

An overflow may be above the max positive value, or below the min negative value.
function addingWillOverflow(x, y) {
  return x > 0 && y > 0 && x > Number.MAX_SAFE_INTEGER - y
}
public boolean addingWillOverflow(int x, int y){
    boolean willOverFlow = false;
    if(x > 0 && y > 0){
        if(y > (Integer.MAX_VALUE - x)){
            willOverFlow = true;
        }
    }
    if(x < 0 && y < 0){
       if(y < (Integer.MIN_VALUE - x)){
           willOverFlow = true;
       }
    }
    return willOverFlow;
}
86
Write boolean function multiplyWillOverflow which takes two integers x, y and return true if (x*y) overflows.

An overflow may be above the max positive value, or below the min negative value.
static boolean multiplyWillOverflow(int x, int y) {
	return Integer.MAX_VALUE/x < y;
}
87
Exit immediately.
If some extra cleanup work is executed by the program runtime (not by the OS itself), describe it.
process.exit()
System.exit(0);
88
Create a new bytes buffer buf of size 1,000,000.
let buf = new Buffer (1e6)
byte[] buf = new byte[1000000];
Alternative implementation:
byte[] buf = new byte[1_000_000];
89
You've detected that the integer value of argument x passed to the current function is invalid. Write the idiomatic way to abort the function execution and signal the problem.
throw new Error ('x is invalid')
throw new IllegalArgumentException("Invalid value for x:" + x);
90
Expose a read-only integer x to the outside world while being writable inside a structure or a class Foo.
const Foo = function Counter () {
  let n = 0
  Object.defineProperty (this, 'value', {get: () => n++})
}
{
  const counter = new Foo ()
  counter.value // 0
  counter.value // 1
}
Alternative implementation:
class Foo {
  #x = 123;
  get x() {
    return this.#x;
  }
}
public class Foo {
    private int x;

    public int getX() {
        return x;
    }
}
91
Read from the file data.json and write its content into the object x.
Assume the JSON data is suitable for the type of x.
const x = JSON.parse(fs.readFileSync('./data.json'));
Alternative implementation:
const x = require('./data.json');
92
Write the contents of the object x into the file data.json.
fs.writeFileSync('data.json', JSON.stringify(x));
93
Implement the procedure control which receives one parameter f, and runs f.
function control(f){
	f();
}
static void control(Runnable f) {
    f.run();
}
94
Print the name of the type of x. Explain if it is a static type or dynamic type.

This may not make sense in all languages.
console.log(typeof x);
Alternative implementation:
console.log (x == null ? x + '' : x.constructor.name);
System.out.println(((Object)x).getClass().getName());
Alternative implementation:
System.out.print(x.getClass().getName());
if(x.getClass().getModifiers() == Modifier.STATIC) {
	System.out.println(" is static");
} else {
	System.out.println(" is dynamic");
}
95
Assign to variable x the length (number of bytes) of the local file at path.
let x = read(path).length
long x = new File(path).length();
96
Set boolean b to true if string s starts with prefix prefix, false otherwise.
var b = s.startsWith(prefix);
Alternative implementation:
var b = (s.lastIndexOf(prefix, 0) === 0);
boolean b = s.startsWith(prefix);
97
Set boolean b to true if string s ends with string suffix, false otherwise.
var b = s.endsWith(suffix);
boolean b = s.endsWith(suffix);
98
Convert a timestamp ts (number of seconds in epoch-time) to a date with time d. E.g. 0 -> 1970-01-01 00:00:00
new Date (ts * 1000)
Date d = new Date(ts * 1000);
Alternative implementation:
Instant d = Instant.ofEpochSecond(ts);
Alternative implementation:
LocalDateTime d = LocalDateTime.ofEpochSecond(ts, 0, ZoneOffset.UTC);
Alternative implementation:
long ts = System.currentTimeMillis();
String d = String.format("%1$tY-%1$tm-%1$td %1$tI:%1$tM:%1$tS", ts);
99
Assign to the string x the value of the fields (year, month, day) of the date d, in format YYYY-MM-DD.
let x = d.toISOString().slice(0, 10)
String x = new SimpleDateFormat("yyyy-MM-dd").format(d);
Alternative implementation:
String x = String.format("%1$tY-%1$tm-%1$td", d)
100
Sort elements of array-like collection items, using a comparator c.
items.sort(c);
Arrays.sort(items, c);
Alternative implementation:
Collections.sort(items, c);
101
Make an HTTP request with method GET to the URL u, then store the body of the response in the string s.
$.get(u, function(data){
  s = data;
});
Alternative implementation:
var xmlHttp = new XMLHttpRequest();
xmlHttp.onreadystatechange = function() { 
	if (xmlHttp.readyState == 4 && xmlHttp.status == 200)
		s = xmlHttp.responseText;
}
xmlHttp.open("GET", u, true);
xmlHttp.send(null);
Alternative implementation:
fetch(u)
  .then(res => res.text())
  .then(text => s = text)
Alternative implementation:
const res = await fetch(u)
s = await res.text()
String s = HttpClient.newHttpClient().send(HttpRequest.newBuilder()
                .uri(URI.create(u))
                .GET()
                .build(), HttpResponse.BodyHandlers.ofString())
                .body();
105
Assign to the string s the name of the currently executing program (but not its full path).
var s = process.argv0;
String s = System.getProperty("sun.java.command");
106
Assign to string dir the path of the working directory.
(This is not necessarily the folder containing the executable itself)
let dir = process.cwd ()
String path = this.getClass().getClassLoader().getResource("").getPath();
Alternative implementation:
String dir = new File("").getAbsolutePath();
Alternative implementation:
String dir = System.getProperty("user.dir");
107
Assign to string dir the path of the folder containing the currently running executable.
(This is not necessarily the working directory, though.)
const dir = path.resolve();
Alternative implementation:
const dir = __dirname;
108
Print the value of variable x, but only if x has been declared in this program.
This makes sense in some languages, not all of them. (Null values are not the point, rather the very existence of the variable.)
if (typeof x !== 'undefined') {
    console.log(x);
}
Alternative implementation:
try {
	console.log(x);
} catch (e) {
	if (!e instanceof ReferenceError) {
		throw e;
	}
}
public class Example
{
	public static int x = 1;
	
	public static void printFieldX()
	{
		for(Field field : Example.class.getFields()) {
			if(field.getName().equals("x")) {
				System.out.print(x);
			}
		}
	}
}
109
Set n to the number of bytes of a variable t (of type T).
String className = t.getClass().getSimpleName();
int n = 0;
if (className.equals("Byte")) {
	n = 1;
} else if (className.equals("Short")) {
	n = 2;
} else if (className.equals("Integer")) {
	n = 4;
} else if (className.equals("Long")) {
	n = 8;
} else if (className.equals("Float")) {
	n = 4;
} else if (className.equals("Double")) {
	n = 8;
} else if (className.equals("Boolean")) {
	n = 0;
} else if (className.equals("Character")) {
	n = 2;
}
110
Set the boolean blank to true if the string s is empty, or null, or contains only whitespace ; false otherwise.
const blank = s == null || s.trim() === ''
boolean blank = StringUtils.isBlank(s);
Alternative implementation:
boolean blank = s==null || s.strip().isEmpty();
Alternative implementation:
boolean blank = s==null || s.isBlank();
Alternative implementation:
boolean blank = s == null || s.equals("") || s.matches("\\s+");
111
From current process, run program x with command-line parameters "a", "b".
exec(`${x} a b`);
Runtime.getRuntime().exec(new String[]{"x", "a", "b"});
112
Print each key k with its value x from an associative array mymap, in ascending order of k.
[...mymap.entries()].sort().map(([_, x]) => console.log(x))
SortedMap<K, V> mymap = new TreeMap<>();
...
for(Map.Entry<K, V> e: mymap.entrySet())
	System.out.println("Key=" + e.getKey() + ", Value=" + e.getValue());
Alternative implementation:
List<K> keys = new ArrayList<>(mymap.keySet());
Collections.sort(keys);
for(K k: keys)
	System.out.println("Key=" + k + ", Value=" + mymap.get(k));
Alternative implementation:
var map = Map.of("a", 1, "d", 4, "c", 3, "b", 2);
new TreeMap<>(map).entrySet().forEach(System.out::println);
Alternative implementation:
mymap.entrySet().stream().sorted(Entry.comparingByKey()).forEach(System.out::println);
113
Print each key k with its value x from an associative array mymap, in ascending order of x.
Multiple entries may exist for the same value x.
Object.entries(mymap)
  .sort((a, b) => a[1] - b[1])
  .forEach(([key, value]) => {
    console.log('key:', key, 'value:', value);
  });
114
Set boolean b to true if objects x and y contain the same values, recursively comparing all referenced elements in x and y.
Tell if the code correctly handles recursive types.
const b = JSON.stringify(x) === JSON.stringify(y);
Alternative implementation:
const arrayDeepEqual = (a, b) => a.length === b.length && a.every((x, i) => deepEqual(x, b[i]))

const deepEqual = (a, b) =>
  Array.isArray(a) && Array.isArray(b)
    ? arrayDeepEqual(a, b)
    : typeof a == 'object' && a && typeof b == 'object' && b
    ? arrayDeepEqual(Object.entries(a), Object.entries(b))
    : Number.isNaN(a) && Number.isNaN(b) || a === b

const b = deepEqual(x, y)
Alternative implementation:
const b = isDeepStrictEqual(x, y)
Alternative implementation:
const b = _.isEqual(x, y);
115
Set boolean b to true if date d1 is strictly before date d2 ; false otherwise.
let b = d1 < d2
boolean before = (d1.compareTo(d2) == -1);
116
Remove all occurrences of string w from string s1, and store the result in s2.
var regex = RegExp(w, 'g');
var s2 = s1.replace(regex, '');
Alternative implementation:
const s2 = s1.split(w).join('')
String s2 = s1.replace(w, "");
117
Set n to the number of elements of the list x.
var n = x.length;
int n = x.size();
Alternative implementation:
int n = x.length;
118
Create the set y from the list x.
x may contain duplicates. y is unordered and has no repeated values.
var y = new Set(x);
Set<T> y = new HashSet<>(x);
Alternative implementation:
Set<T> y = new HashSet<T>(x);
119
Remove duplicates from the list x.
Explain if the original order is preserved.
x = [...new Set(x)];
Alternative implementation:
x = Array.from(new Set(x));
Alternative implementation:
const seen = new Set();
x = x.filter( v => {
  if(seen.has(v))
    return false;
  seen.add(v);
  return true;
});
Set<T> uniques = new HashSet<>(x);
x.clear();
x.addAll(uniques);
Alternative implementation:
x = new ArrayList<T>(new HashSet<T>(x));
Alternative implementation:
final HashSet<T> seen = new HashSet<T>();
final Iterator<T> listIt = x.iterator();
while (listIt.hasNext()) {
  final T curr = listIt.next();
  if (seen.contains(curr)) {
    listIt.remove();
  } else {
    seen.add(curr);
  }
}
120
Read an integer value from the standard input into the variable n
const {createInterface} = require('readline')

const rl = createInterface ({
  input: process.stdin,
  output: process.stdout
})

rl.question('Input an integer: ', response => {
  let n = parseInt (response)
  // stuff to be done with n goes here

  rl.close()
})
Scanner in = new Scanner(System.in);
n = in.nextInt();
Alternative implementation:
Scanner in = new Scanner(System.in);
int n = in.nextInt();
121
Listen UDP traffic on port p and read 1024 bytes into buffer b.
int len = 1024;
int p = 8888;
byte[] b = new byte[len];
try (DatagramSocket socket = new DatagramSocket(p)) {
  DatagramPacket packet = new DatagramPacket(b, len);
  socket.receive(packet);
}
122
Create an enumerated type Suit with 4 possible values SPADES, HEARTS, DIAMONDS, CLUBS.
const spades = 0
const hearts = 1
const diamonds = 2
const clubs = 3
enum Suit{
  SPADES,
  HEARTS,
  DIAMONDS,
  CLUBS;
}
123
Verify that predicate isConsistent returns true, otherwise report assertion violation.
Explain if the assertion is executed even in production environment or not.
console.assert(_isConsistent);
assert isConsistent() : "State consistency violated";
124
Write the function binarySearch which returns the index of an element having the value x in the sorted array a, or -1 if no such element exists.
function binarySearch(a, x, i = 0) {
  if (a.length === 0) return -1
  const half = (a.length / 2) | 0
  return (a[half] === x) ?
    i + half :
    (a[half] > x) ?
    binarySearch(a.slice(0, half), x, i) :
    binarySearch(a.slice(half + 1), x, half + i + 1)
}
static int binarySearch(final int[] arr, final int key) {
    final int index = Arrays.binarySearch(arr, key);
    return index < 0 ? - 1 : index;
}
125
measure the duration t, in nanoseconds, of a call to the function foo. Print this duration.
console.time('foo');
foo();
console.timeEnd('foo');
long t = System.nanoTime();
foo();
t = System.nanoTime() - t;
System.out.println(t + "ns");
126
Write a function foo that returns a string and a boolean value.
const foo = () => ({string: 'string', bool: true})
Alternative implementation:
const foo = () => ['string', true];
static Object[] returnAnything() {
    return new Object[]{"a string", true};
}

public static void main (String[] args) {
    Object[] array = returnAnything();
    System.out.println(array[0]);
    System.out.println(array[1]);
}
Alternative implementation:
private static class Tuple<S, B>
{
	private S s;
	private B b;
	
	public Tuple(S s, B b)
	{
		this.setS(s);
		this.setB(b);
	}
	
	public void setS(S s)
	{
		this.s = s;
	}
	
	public void setB(B b)
	{
		this.b = b;
	}
	
	public S getS()
	{
		return s;
	}
	
	public B getB()
	{
		return b;
	}
}

private static Tuple foo()
{
	return new Tuple<String, Boolean>("value", true);
}
127
Import the source code for the function foo body from a file "foobody.txt".
const foo = new Function(await readFile('foobody.txt'));
128
Call a function f on every node of a tree, in breadth-first prefix order
static void breadthFirstSearch(Node root, Consumer<Node> f) {
    Queue<Node> queue = new LinkedList<>();
    queue.offer(root);

    while(!queue.isEmpty()) {
        Node polled = queue.poll();
        f.accept(polled);
        polled.children.forEach(a -> queue.offer(a));
    }
}
     
131
Execute f1 if condition c1 is true, or else f2 if condition c2 is true, or else f3 if condition c3 is true.
Don't evaluate a condition when a previous condition was true.
c1 ? f1 : c2 ? f2 : f3
Alternative implementation:
switch (true) {
  case c1:
    f1();
    break;
  case c2:
    f2();
    break;
  case c3:
    f3();
    break;
}
Alternative implementation:
if (c1) {
  f1();
} else if (c2) {
  f2();
} else if (c3) {
  f3();
}
if (c1) {
   f1();
} else if (c2) {
   f2();
} else if (c3) { 
   f3();
}
132
Run the procedure f, and return the duration of the execution of f.
function clock(f) {
  var start = new Date().getTime();
  f();
  var end = new Date().getTime();
  return end - start;
}
Alternative implementation:
function clock(f) {
  var start = performance.now();
  f();
  var end = performance.now();
  return end - start;
}
long clock(Runnable f) {
    long t0 = System.currentTimeMillis();
    f.run();
    long t1 = System.currentTimeMillis();
    return t1 - t0;
}
133
Set boolean ok to true if string word is contained in string s as a substring, even if the case doesn't match, or to false otherwise.
var lowerS = s.toLowerCase();
var lowerWord = word.toLowerCase();
var ok = lowerS.indexOf(lowerWord) !== -1;
ok = s.toLowerCase().contains(word.toLowerCase());
134
Declare and initialize a new list items, containing 3 elements a, b, c.
const items = [a, b, c];
Alternative implementation:
const items = new Array(a, b, c);
List<T> items = new ArrayList<>();
items.add(a);
items.add(b);
items.add(c);
Alternative implementation:
List<T> items = Arrays.asList(a, b, c);
Alternative implementation:
var items = List.of(a, b, c);
135
Remove at most 1 item from list items, having the value x.
This will alter the original list or return a new list, depending on which is more idiomatic.
If there are several occurrences of x in items, remove only one of them. If x is absent, keep items unchanged.
const idx = items.indexOf(x)
if (idx !== -1) items.splice(idx, 1)
items.stream().findFirst().filter(item -> "x".equals(item)).ifPresent(removeIndex -> items.remove(removeIndex));
Alternative implementation:
T value;
for(int index = 0; index < items.size(); index++) {
	value = items.get(index);
	if(value.equals(x)) {
		items.remove(index);
		break;
	}
}
136
Remove all occurrences of the value x from list items.
This will alter the original list or return a new list, depending on which is more idiomatic.
const newlist = items.filter(y => x !== y)
items.removeAll(Collections.singleton(x));
137
Set the boolean b to true if the string s contains only characters in the range '0'..'9', false otherwise.
var b = /^[0-9]+$/.test(s);
boolean b = s.matches("[0-9]*");
Alternative implementation:
boolean b = s.matches("[0-9]+");
138
Create a new temporary file on the filesystem.
const tempFile = tempy.file()
Alternative implementation:
const resultOfCallback = tempy.file.task(tempFile => {
 // do something with tempFile
})
File tempFile = File.createTempFile("prefix-", "-suffix");
tempFile.deleteOnExit();
139
Create a new temporary folder on filesystem, for writing.
const tempDir = await Deno.makeTempDir();
File folder = new File("/path/");
folder.deleteOnExit();
140
Delete from map m the entry having key k.

Explain what happens if k is not an existing key in m.
m.delete(k)
map.remove(k);
141
Iterate in sequence over the elements of the list items1 then items2. For each iteration print the element.
for (let item of items1) console.log(item)
for (let item of items2) console.log(item)
Alternative implementation:
items1.concat(items2).forEach(console.log)
items1.forEach(System.out::println);
items2.forEach(System.out::println);
Alternative implementation:
for (T item : items1) {
	System.out.println(item);
}
for (T item : items2) {
	System.out.println(item);
}
Alternative implementation:
Stream.concat(
	items1.stream(), 
	items2.stream()
).forEach(System.out::println);
142
Assign to string s the hexadecimal representation (base 16) of integer x.

E.g. 999 -> "3e7"
const s = x.toString(16)
String s = Integer.toHexString(x);
Alternative implementation:
String s = String.format("%02x", x);
143
Iterate alternatively over the elements of the lists items1 and items2. For each iteration, print the element.

Explain what happens if items1 and items2 have different size.
const shorter = _items1.length > _items2.length ? _items2 : _items1;
const longer = _items1.length <= _items2.length ? _items2 : _items1;
shorter.map((m, i) => {
  console.log(m);
  console.log(longer[i]);
});
Alternative implementation:
const iterator1 = items1[Symbol.iterator]()
const iterator2 = items2[Symbol.iterator]()

let result1 = iterator1.next()
let result2 = iterator2.next()

while(!(result1.done && result2.done)) {
  if (!result1.done) {
    console.log(result1.value)
    result1 = iterator1.next()
  }
  if (!result2.done) {
    console.log(result2.value)
    result2 = iterator2.next()
  }
}
Iterator<String> iter1 = items1.iterator();
Iterator<String> iter2 = items2.iterator();
while (iter1.hasNext() || iter2.hasNext()) {
	if (iter1.hasNext()) {
		System.out.println(iter1.next());
	}
	if (iter2.hasNext()) {
		System.out.println(iter2.next());
	}
}
Alternative implementation:
IntStream.range(0, Math.max(items1.size(), items2.size()))
	.boxed()
	.flatMap(idx -> Stream.of(
		items1.size() > idx ? items1.get(idx) : null,
		items2.size() > idx ? items2.get(idx) : null
	))
	.filter(Objects::nonNull)
	.forEach(System.out::println);
Alternative implementation:
int index = 0;
String value1 = null;
String value2 = null;
while(index < items1.size() && index < items2.size()) {
	if(index < items1.size()) {
		value1 = items1.get(index);
	}
	if(index < items2.size()) {
		value2 = items2.get(index);
	}
	System.out.printf("%s, %s%n", value1, value2);
	index++;
}
144
Set boolean b to true if file at path fp exists on filesystem; false otherwise.

Beware that you should never do this and then in the next instruction assume the result is still valid, this is a race condition on any multitasking OS.
const b = fs.existsSync(fp);
Alternative implementation:
let b = true;
try {
	await access(fp);
} catch {
	b = false;
}
boolean b = new File(fb).exists();
145
Print message msg, prepended by current date and time.

Explain what behavior is idiomatic: to stdout or stderr, and what the date format is.
console.log(Date(), msg);
Alternative implementation:
console.error(Date(), msg);
Logger LOGGER = Logger.getLogger(MyClass.class.getName());

LOGGER.info(msg);
Alternative implementation:
long unixEpoch = System.currentTimeMillis();
String dateAndTime = String.format("%1$tY-%1$tm-%1$td %1$tI:%1$tM:%1$tS", unixEpoch);
System.out.printf("%s: %s%n", dateAndTime, msg);
System.err.printf("%s: %s%n", dateAndTime, msg);
146
Extract floating point value f from its string representation s
let f = +s
double f = Double.parseDouble(s);
Alternative implementation:
Float f = Float.valueOf(s);
Alternative implementation:
Double f = Double.valueOf(s);
147
Create string t from string s, keeping only ASCII characters
const t = [...s].filter(c => c.charCodeAt(0) <= 0x7f).join('')
Alternative implementation:
const t = s.replace(/[^\x00-\x7f]/gu, '')
String t = s.replaceAll("[^\\x00-\\x7F]", "");
148
Read a list of integer numbers from the standard input, until EOF.
process.stdin.on('data', processLine)

function processLine (line) {
  const string = line + ''
  console.log(string)
}
Alternative implementation:
const ints = await new Promise(resolve => {
  let string = ''
  process.stdin
    .on('data', data => string += data.toString())
    .on('close', () => resolve(string.split('\n').map(line => Number.parseInt(line))))
})
List<Integer> list = new ArrayList<>();
Scanner in = new Scanner(System.in);
while(in.hasNext())
    list.add(in.nextInt());
149
As an exception, this content is not under license CC BY-SA 3.0 like the rest of this website.
 
 
150
Remove the last character from the string p, if this character is a forward slash /
const slashscrape = p => (
  p.slice (-1) === '/' ?
    p.slice (0, -1) :
    p
)
if (p.endsWith("/")) {
    p = p.substring(0, p.length() - 1);
}
Alternative implementation:
p = p.replaceAll("/$", "");
151
Remove last character from string p, if this character is the file path separator of current platform.

Note that this also transforms unix root path "/" into the empty string!
p = p.endsWith(path.sep) ? p.slice(0, -path.sep.length) : p
152
Create string s containing only the character c.
let s = c
String s = String.valueOf(c);
Alternative implementation:
String s = Character.toString(c);
Alternative implementation:
String s = c + "";
Alternative implementation:
String s = = new Character(c).toString();
Alternative implementation:
String s = String.format("%s", c);
153
Create the string t as the concatenation of the string s and the integer i.
let t = s + i;
Alternative implementation:
let t = `${s}${i}`
String t = s + i;
Alternative implementation:
String t = String.format("%s%d", s, i);
154
Find color c, the average between colors c1, c2.

c, c1, c2 are strings of hex color codes: 7 chars, beginning with a number sign # .
Assume linear computations, ignore gamma corrections.
var c = "#";
for(var i = 0; i<3; i++) {
  var sub1 = c1.substring(1+2*i, 3+2*i);
  var sub2 = c2.substring(1+2*i, 3+2*i);
  var v1 = parseInt(sub1, 16);
  var v2 = parseInt(sub2, 16);
  var v = Math.floor((v1 + v2) / 2);
  var sub = v.toString(16).toUpperCase();
  var padsub = ('0'+sub).slice(-2);
  c += padsub;
}
Alternative implementation:
c = "#" + (() => {
  const [p1, p2] = [c1, c2].map((color) => parseInt(color.slice(1), 16)),
    a = [];

  for (let i = 0; i <= 2; i += 1) {
    a.push(Math.floor(((p1 >> (i * 8) & 0xff) + (p2 >> (i * 8) & 0xff)) / 2));
  }

  return a.reverse().map((num) => num.toString(16).padStart(2, "0")).join("");
})();
String r1 = c1.substring(1,3);
String g1 = c1.substring(3,5);
String b1 = c1.substring(5,7);

String r2 = c2.substring(1,3);
String g2 = c2.substring(3,5);
String b2 = c2.substring(5,7);

String r = String.format("%02X", (Integer.parseInt(r1, 16)+Integer.parseInt(r2, 16))/2 );
String g = String.format("%02X", (Integer.parseInt(g1, 16)+Integer.parseInt(g2, 16))/2 );
String b = String.format("%02X", (Integer.parseInt(b1, 16)+Integer.parseInt(b2, 16))/2 );

String c = "#" + r + g + b;
Alternative implementation:
StringBuilder sb = new StringBuilder("#");
for(int i=0;i<3;i++) {
  String sub1 = c1.substring(1+2*i,3+2*i);
  String sub2 = c2.substring(1+2*i,3+2*i);
  int v1 = Integer.parseInt(sub1, 16);
  int v2 = Integer.parseInt(sub2, 16);
  int v = (v1 + v2)/2;
  String sub = String.format("%02X", v);
  sb.append(sub);
}
String c = sb.toString();
Alternative implementation:
String c1 = "#152a3e";
String c2 = "#005867";
int cx = Integer.parseInt(c1.substring(1), 16);
int cy = Integer.parseInt(c2.substring(1), 16);
int r1 = (cx & 0xff_00_00) >> 16;
int g1 = (cx & 0x00_ff_00) >> 8;
int b1 = (cx & 0x00_00_ff);
int r2 = (cy & 0xff_00_00) >> 16;
int g2 = (cy & 0x00_ff_00) >> 8;
int b2 = (cy & 0x00_00_ff);
int r = (r1 + r2) / 2;
int g = (g1 + g2) / 2;
int b = (b1 + b2) / 2;
String c = String.format("#%02x%02x%02x", r, g, b);
155
Delete from filesystem the file having path filepath.
try {
  fs.unlinkSync(filepath);
} catch (err) {
  console.error(err);
}
Alternative implementation:
await unlink(filepath)
Alternative implementation:
Deno.remove(filepath, { recursive: true }).catch((err) => console.error(err));
new File(filepath).delete();
156
Assign to the string s the value of the integer i in 3 decimal digits. Pad with zeros if i < 100. Keep all digits if i1000.
let s = i.toString();
if(i<100)
  s = ('00'+i).slice(-3);
String s = String.format("%03d", i);
157
Initialize a constant planet with string value "Earth".
const planet = 'Earth'
static final String planet = "Earth";
Alternative implementation:
final String planet = "Earth";
Alternative implementation:
private final String planet = "Earth";
158
Create a new list y from randomly picking exactly k elements from list x.

It is assumed that x has at least k elements.
Each element must have same probability to be picked.
Each element from x must be picked at most once.
Explain if the original ordering is preserved or not.
const idx = x.map((item, i) => i);
while (y.length < k) {
  const i = parseInt(Math.random() * idx.length, 10);
  y.push(x[[idx[i]]]);
  idx.splice(i, 1);
}
public static <T> List<T> randomSublist(List<T> x, int k) {
	List<T> y = new ArrayList<>(x);
	Collections.shuffle(y);
	return y.subList(0, k);
}