2017-01-15 16:00:44 -08:00
|
|
|
// lowlevel/SerialNumberTest.java
|
2021-01-31 15:42:31 -07:00
|
|
|
// (c)2021 MindView LLC: see Copyright.txt
|
2017-01-15 16:00:44 -08:00
|
|
|
// We make no guarantees that this code is fit for any purpose.
|
|
|
|
// Visit http://OnJava8.com for more book information.
|
|
|
|
|
|
|
|
public class SerialNumberTest {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
SerialNumberChecker.test(new SerialNumbers());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Output:
|
2021-01-31 15:42:31 -07:00
|
|
|
Duplicate: 33280
|
|
|
|
Duplicate: 33278
|
|
|
|
Duplicate: 33290
|
|
|
|
Duplicate: 33277
|
2017-01-15 16:00:44 -08:00
|
|
|
*/
|