Skip to content

Instantly share code, notes, and snippets.

View evisong's full-sized avatar
📱

EviSONG evisong

📱
View GitHub Profile
@evisong
evisong / ConcatenateIntegers.java
Created February 27, 2012 13:56
Concatenation of array elements into an integer with the maximum value (Java porting)
package me.evis.lab.algorithm;
import java.util.Arrays;
import java.util.Comparator;
import org.apache.commons.lang.ArrayUtils;
/**
* Port from https://gist.github.com/1921701#file_concatenate_integers.c
*/