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
var ENG = "qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLVBNM"; | |
var μμ΄νμ΄ν = "rRseEfaqQtTdwWczxvgkoiOjpuPhynbml"; | |
var νκΈνμ΄ν = "γ±γ²γ΄γ·γΈγΉγ γ γ γ γ γ γ γ γ γ γ γ γ γ γ γ γ γ γ γ γ γ γ γ γ γ ‘γ £"; | |
var μ΄μ±λͺ¨μ = "γ±γ²γ΄γ·γΈγΉγ γ γ γ γ γ γ γ γ γ γ γ γ "; | |
var μ€μ±λͺ¨μ = "γ γ γ γ γ γ γ γ γ γ γ γ γ γ γ γ γ γ γ ‘γ ’γ £"; | |
var μ’ μ±λͺ¨μ = "γ±γ²γ³γ΄γ΅γΆγ·γΉγΊγ»γΌγ½γΎγΏγ γ γ γ γ γ γ γ γ γ γ γ γ "; | |
function νκΈμ‘°ν©νκΈ°(src) { | |
if (src == null) { | |
return ''; |
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
var list = [1,2,5,7,9,10,11,15,16,17]; | |
var result = ""; | |
var tempCount = 0; | |
for(var i=0;i<list.length-1;i++){ | |
if(list[i]+1 == list[i+1]){ | |
tempCount++; | |
}else{ | |
if(tempCount > 0){ | |
result += tempCount.toString(); | |
tempCount = 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
import sys | |
import requests | |
message = sys.argv[1] | |
token = "TOKEN"; | |
channel_id = "CHANNEL ID" | |
channel_url = "https://discord.com/api/v8/channels/"+channel_id+"/messages" | |
headers = { | |
'Authorization': token, | |
'Accept': '/', | |
'Authority': 'discordapp.com', |
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
message = "Hi!"; | |
token = "TOKEN"; | |
channel_id = "CHANNEL ID"; | |
channel_url = `https://discordapp.com/api/v6/channels/${channel_id}/messages` | |
request = new XMLHttpRequest(); | |
request.withCredentials = true; |
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
int main() | |
{ | |
int array[4][4] = { | |
{4,3,0,0}, | |
{1,2,3,0}, | |
{0,0,2,0}, | |
{2,1,0,0} | |
}; | |
int i, j, k; | |
for ( i = 0; i < 4; i++) { |