This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export const b = { | |
| m: () => console.log('Run m') | |
| }; | |
| import { b as c } from './module-self-import.mjs'; | |
| const m = c.m; | |
| export default function a() { | |
| console.log('Run a'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | |
| */ |