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 chsui.AnnouncePlus.Commands; | |
| import java.util.List; | |
| import org.bukkit.command.CommandSender; | |
| import chsui.AnnouncePlus.Controller.SubCommand; | |
| public class SubAnnounceAdd extends SubCommand { | |
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
| #!/usr/bin/python | |
| import hashlib | |
| import sys | |
| def printFlag(): | |
| print("Flag is XXX") | |
| def rshift(val, n): | |
| m = 1 << 128 |
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
| chrs = "#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~" | |
| def get(ind): | |
| output = "" | |
| for i in ind: | |
| output += chrs[i] | |
| return output | |
| print(get([36, 76, 60, 17, 69, 66, 62, 65, 60, 74, 62, 72, 66, 60, 54, 76, 82, 47, 60, 33, 62, 54, 59, 59, 53])) |
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 up(a int) int { | |
| if a >= 10 { | |
| return a / 10 | |
| } else { |