This file contains 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 g_79ff0bed607bef315c4353b374e1319e; | |
import java.util.ArrayList; | |
import java.util.List; | |
import java.util.Objects; | |
import static java.util.Objects.requireNonNull; | |
/** | |
* A program solves <a href="https://en.wikipedia.org/wiki/Tower_of_Hanoi">Tower of Hanoi</a>. |
This file contains 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 p_9386c3c805d7da9ebb7b7814daf688b3; | |
import java.io.IOException; | |
import java.time.DateTimeException; | |
import java.time.chrono.Chronology; | |
import java.time.temporal.ChronoField; | |
import java.time.temporal.ValueRange; | |
import java.util.function.BiConsumer; | |
public class ValueRanges { |
This file contains 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 p_4cb92ba58cd8e8ab40d7e734e1f86ce1; | |
import javax.validation.constraints.NotNull; | |
import java.util.Collections; | |
import java.util.HashMap; | |
import java.util.Map; | |
import java.util.Objects; | |
import static java.util.Objects.requireNonNull; |
This file contains 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 p_fd0b04b007e395a7fcfc5066898d422d; | |
import java.util.Arrays; | |
import java.util.Comparator; | |
import java.util.List; | |
import java.util.Map; | |
import java.util.SortedMap; | |
import java.util.TreeMap; | |
import java.util.stream.Collectors; | |
import java.util.stream.IntStream; |
This file contains 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
import datetime | |
from datetime import timedelta | |
import getpass | |
import json | |
try: | |
import requests | |
except ImportError: | |
sys.exit("run pip install requests") | |
from requests.auth import HTTPBasicAuth | |
import sys |
This file contains 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
import java.util.Arrays; | |
import java.util.Objects; | |
public final class CaesarCipher { | |
/** | |
* Creates a new instance with specified shift. | |
* | |
* @param shift the shift | |
*/ |
This file contains 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
class NumberCodec { | |
} |
This file contains 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 p_459caefadb7cee1b2aaa275bcb3013fc; | |
import static java.lang.Float.floatToIntBits; | |
import static java.lang.Float.intBitsToFloat; | |
import static java.lang.Math.pow; | |
import static java.lang.Math.scalb; | |
public class Ieee754Binary16 {//implements Comparable<Half> { | |
// ----------------------------------------------------------------------------------------------------------------- |
This file contains 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
public class Half { | |
} |
NewerOlder