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
<ID : [ "\u0041" - "\u005a", | |
"\u0061" - "\u007a", | |
"\u00aa" - "\u00aa", | |
"\u00b5" - "\u00b5", | |
"\u00ba" - "\u00ba", | |
"\u00c0" - "\u00d6", | |
"\u00d8" - "\u00f6", | |
"\u00f8" - "\u02c1", | |
"\u02c6" - "\u02d1", | |
"\u02e0" - "\u02e4", |
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
trait Ref[A] { | |
def get: A | |
def set(a: A) | |
} | |
type *[A, B] = (A, B) | |
trait Lazy { | |
type T[A] | |
def mk[A](f: () => A): T[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 org.glavo.oj.ojs | |
import org.glavo.oj.OJ | |
import org.glavo.oj.Problem | |
import org.jsoup.* | |
import org.jsoup.nodes.Document | |
import org.jsoup.nodes.Element | |
import org.jsoup.select.Elements | |
import java.io.ObjectInputStream |
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
https://www.luogu.org/problem/show?pid=1000 | |
https://www.luogu.org/problem/show?pid=1001 | |
https://www.luogu.org/problem/show?pid=1002 | |
https://www.luogu.org/problem/show?pid=1003 | |
https://www.luogu.org/problem/show?pid=1004 | |
https://www.luogu.org/problem/show?pid=1005 | |
https://www.luogu.org/problem/show?pid=1006 | |
https://www.luogu.org/problem/show?pid=1007 | |
https://www.luogu.org/problem/show?pid=1008 | |
https://www.luogu.org/problem/show?pid=1009 |
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 tech.glacial.function; | |
import tech.glacial.ToolClass; | |
/** | |
* Created by glavo on 16-12-25. | |
* Some helper function for Function. | |
* | |
* @author Glavo |
NewerOlder