๐ฎโ๐จ
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 hashlib | |
| import re | |
| import string | |
| ALLOWED_CHARACTERS = string.hexdigits | |
| NUMBER_OF_CHARACTERS = len(ALLOWED_CHARACTERS) | |
| def characterToIndex(char): | |
| return ALLOWED_CHARACTERS.index(char) |
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
| from z3 import * | |
| from pwn import * | |
| p = remote('218.158.141.199',24763) | |
| s = Solver() | |
| x = [Int('x%i'%i)for i in range(12,130)] | |
| y = [Int('y%i'%i)for i in range(12,130)] | |
| x1 = [Int('x1%i'%i)for i in range(12,130)] | |
| y1 = [Int('y1%i'%i)for i in range(12,130)] | |
| x2 = [Int('x2%i'%i)for i in range(12,130)] |
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
| from pwn import * | |
| from ast import literal_eval | |
| p = remote('218.158.141.182',52387) | |
| for i in range(100): | |
| payload="" | |
| print p.recvuntil('Step : ' + str(i+1) + "\n\n") | |
| text = p.recvline() | |
| text = list(text) |
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
| from pwn import * | |
| import base64 | |
| import binascii | |
| import os | |
| import wave | |
| import pylab | |
| import sys | |
| #import pytesseract | |
| from termios import tcflush, TCIFLUSH |
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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <stdint.h> | |
| typedef struct Node { | |
| uint64_t data; | |
| struct Node* next; | |
| }Node; | |
| void addNode(uint64_t data, Node* ptr) { |
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
| #include <iostream> | |
| #include <list> | |
| using namespace std; | |
| int main() { | |
| list<int> l; | |
| l.push_back(1); l.push_back(2); // ๋งจ ๋ค ์์ ์ฝ์ | |
| l.push_back(3); l.push_back(4); | |
| l.pop_back(); // ๋งจ ๋ค ์์ ์ ๊ฑฐ | |
| l.push_front(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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| typedef struct LinkNode { | |
| int data; | |
| struct ListNode* link; | |
| }ListNode; | |
| ListNode* insert_first(ListNode* head, int item) { | |
| if (head == NULL) { | |
| head = (ListNode*)malloc(sizeof(ListNode)); |
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
| % ๋ฐ์ดํฐ ๋ถ๋ฌ์ค๊ธฐ | |
| % 1967~2013 | |
| crime = readmatrix('/MATLAB Drive/Project/๋ฒ์ฃ+๋ฐ์ํํฉ_20231126205945.csv'); | |
| temp = readmatrix('/MATLAB Drive/Project/์์ธ์_์๋ณ_๊ธฐ์จ_1967_2013.csv'); | |
| precipitation = readmatrix('/MATLAB Drive/Project/์์ธ์_์๋ณ_๊ฐ์๋_1967_2013.csv'); | |
| % ๋ฐ์ดํฐ ์ถ์ถ | |
| crimeNum = crime(:, 2); | |
| tempNum = temp(:, 3); | |
| precipitationNum = precipitation(:, 3); |
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
| @startuml | |
| !include <cloudinsight/docker> | |
| !include <cloudinsight/redis> | |
| !include <logos/prisma> | |
| !include <logos/vercel> | |
| !include <logos/vercel-icon> | |
| !include <logos/python> | |
| !include <logos/nextjs> | |
| !include <aws/Compute/AmazonEC2/AmazonEC2> |