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 ch.sgwerder.gist; | |
import org.junit.jupiter.api.Assertions; // only for testing, see below | |
import org.junit.jupiter.api.Test; // only for testing, see below | |
import java.util.stream.IntStream; | |
/** | |
* Copyright (C) 2017 Simon Gwerder. | |
* <p/> |
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 ch.sgwerder.gist; | |
import java.util.Arrays; | |
import java.util.Collection; | |
import java.util.Iterator; | |
import java.util.RandomAccess; | |
/** | |
* Copyright (C) 2015 Simon Gwerder. | |
* <p/> |
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 ch.sgwerder.gist; | |
import java.lang.reflect.Array; | |
import java.util.Arrays; | |
import java.util.Collection; | |
import java.util.Iterator; | |
import java.util.RandomAccess; | |
/** | |
* Copyright (C) 2015 Simon Gwerder. |