// TODO
- OneDrive ์ญ์
- ์๋์ฐ ๋ฉ๋ด์ ๋ณด์ด๋ ๊ด๊ณ ์ ๋ถ ์ญ์
ํ๋ก๊ทธ๋จ ์ถ๊ฐ/์ ๊ฑฐ
๋ค์ด๊ฐ์ ์ฌ๊ธฐ์ ๋ณด์ด๋ ์ธ๋ชจ์๋ ๊ฒ๋ค ์ ๋ถ ์ญ์
// ==UserScript== | |
// @name Copy all video IDs from current Youtube playlist | |
// @version 2025-10-01 | |
// @description try to take over the world! | |
// @author nulta | |
// @match https://www.youtube.com/watch* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com | |
// @grant none | |
// @run-at context-menu | |
// ==/UserScript== |
from random import shuffle | |
def make_lotto_numbers(): | |
pool = list(range(1, 45+1)) | |
shuffle(pool) | |
return pool[:6], pool[6] | |
def main(): | |
input_nums = set(map(int, input("์ซ์ 6๊ฐ๋ฅผ ์ ๋ ฅ: ").split())) | |
if len(input_nums) != 6: |
2024-05-24
class PrimeChecker
์์๋ฅผ ํ๋ณํ๋ ํจ์ is_prime(num: int) -> bool
์ ๊ฐ์ง ํด๋์ค์
๋๋ค.
์๋ผํ ์คํ
๋ค์ค์ ์ฒด๋ฅผ ์ฌ์ฉํ๋ฉฐ, ์์ ํ๋ณ์ ํ์ํ ์ฐ์ฐ ๊ฒฐ๊ณผ์ ๊ฐ๋ค์ ๋ด๋ถ์ ์ผ๋ก ์ ์ฅํฉ๋๋ค.
์ฆ, ์ด ํด๋์ค๋ ๋๊ฐ์ ์ฐ์ฐ์ ๋ ๋ฒ ์ํํ์ง ์์ต๋๋ค.
MAX_TICK_TIME = 1 | |
MAX_STACK_DEPTH = 100 | |
DO_RUNTIME_TYPE_CHECK = true | |
Sodacore = {} | |
Sodacore.Commands = {} | |
---@alias DataType | |
---| "string" |
I hereby claim:
To claim this, I am signing this object:
import os | |
from os import path | |
import random | |
import time | |
import torch | |
import numpy as np | |
import pandas as pd | |
from glob import glob | |
import torchvision.transforms as transforms | |
from torch.utils.data import DataLoader, Dataset |