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
| import java.util.* | |
| import kotlin.collections.ArrayList | |
| fun main(args: Array<String>) { | |
| val tokens = string2Tokens(testArg) | |
| println(tokens) | |
| val structure = tokens2Structure(tokens) | |
| println(structure) | |
| } |
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
| #lang racket | |
| ; Toys | |
| (define (atom? x) | |
| (and (not (pair? x)) (not (null? x)))) | |
| ; Do it, Do It Again, and Again | |
| (define (lat? l) | |
| (if (pair? l) | |
| (and (atom? (car l)) (lat? (cdr l))) |
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
| public class Flat2Nest { | |
| public static void main(String[] args) { | |
| String testProp = "java.class.version = 60.0\n" + | |
| "java.home = /usr/lib/jvm/java-16-openjdk\n" + | |
| "java.runtime.name = OpenJDK Runtime Environment\n" + | |
| "java.runtime.version = 16.0.2+7\n" + | |
| "java.specification.name = Java Platform API Specification\n" + | |
| "java.specification.vendor = Oracle Corporation\n" + | |
| "java.specification.version = 16\n" + | |
| "java.vendor = N/A\n" + |
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
| opkg list-upgradable | cut -f 1 -d' ' | xargs opkg upgrade |
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 main | |
| import "fmt" | |
| func main() { | |
| //fmt.Println(700000 / 360) | |
| //fmt.Println(700000 * 3.25 / 100 / 12) | |
| //fmt.Println(700000/360 + 70*10000*3.25/100/12) | |
| //每月公积金4000 | |
| repayment() |
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
| ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAoux0sOS+43Qcj4Fwq8JRSLeVcF8sx10JnCEagfvBbV2KL+ZGQYpkSFd5H0fp7dmMuza1PZAf/tMJKi/fM3snvhDW8ddEeDoSQDHbOFLvcD94x0Y6YRGvRfeZubiGSUl21S0FyjmCPaliYtkQ5ZzlQexd8Pla+mAH/SU5+QFjb5iPb4hNQwrba8oelBDIDrXGsHimVdDdNEp+cx/F+VC2di63FznF6jiM7ItX9oeQFmeFKc05BUvxsRgsDhuEfPCIEgzWxdW6biGEH0NouA1iQq8g3WTfb2tQUzANvUlqdnmDlrnadKXA/du9t1WsVIDy4LiSL/C+8+cJMceVbyRMmQ== |
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
| import java.util.* | |
| object T { | |
| fun randomTestAll() { | |
| val list = LinkedList(listOf(50)) | |
| val tree = Tree(50) | |
| var addOp: Long = 0 | |
| var delOp: Long = 0 | |
| var mOp: Long = 0 | |
| var i: Long = 0 |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <project | |
| xmlns="http://maven.apache.org/POM/4.0.0" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd "> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>org.apereo.cas</groupId> | |
| <artifactId>cas-overlay</artifactId> | |
| <packaging>war</packaging> | |
| <version>1.0</version> |