Recent projects

Proyecto con async

Python · an anonymous user
12 hours ago
#core/CLI.py import subprocess import typer app = typer.Typer() def docker_command(*args): try: subprocess.run(

main.py

Python · an anonymous user
12 hours ago
import random import string import secrets longueur = 12 caracteres = string.ascii_letters + string.digits + string.punctuation caracteres = string.ascii_letters + string.digits + string.punctuation mot_de_passe = [

ポケモン

C++ · an anonymous user
12 hours ago
#include <iostream> using namespace std; int main() { int pok; int H,A,B,C,D,S; int total; int typeS; int type[18] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};

parcial program2

C# · an anonymous user
12 hours ago
using System; namespace MyCompiler { class Producto { // Atributos private int codigo; private string descripcion; private double precio;

Tr

Python · an anonymous user
13 hours ago
from openpyxl import Workbook from openpyxl.styles import Font, PatternFill, Alignment, Border, Side from openpyxl.utils import get_column_letter wb = Workbook() # ============= STYLES ============= titre = Font(bold=True, size=14, color="FFFFFF")

Proyecto con async

Python · an anonymous user
13 hours ago
#core/CLI.py import subprocess import typer app = typer.Typer() @app.command() def up(): try:

Exc

Python · an anonymous user
13 hours ago
import openpyxl from openpyxl.styles import Font, Alignment, Border, Side, PatternFill, numbers from openpyxl.utils import get_column_letter wb = openpyxl.Workbook() # ============================================================ # STYLES # =======

라이벌 핵

Python · 6767676767767
13 hours ago
print('Hello world!') local Rayfield local success, errorMessage = pcall(function() Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() end) if not success then warn("Rayfield 로드 실패: " .. errorMessage) return end

DDD2

Octave · an anonymous user
13 hours ago
% 1. Input your complete 42-node edge vectors A=[1 2 3 4 5 6 7 8 9 10 1 1 11 3 12 13 14 15 5 5 16 17 18 8 18 19 20 21 22 20 23 25 26 26 27 23 26 9 28 29 30 31 32 32 11 33 33 35 36 11 36 37 42 13 38 38 40 41 42 42 43 44 45 46 47 43 48 49 50 50 51 14

91

C++ · an anonymous user
13 hours ago
#include <iostream> using namespace std; int main() { int i,j; for (i=1;i<10;i++) { for (j=i;j<10;j++) { cout<<i<<"*"<<j<<"="<<i*j<<" "; }

Proyecto con async

Python · an anonymous user
13 hours ago
#core/CLI.py import subprocess import typer app = typer.Typer() @app.command() def up(): try:

fill missing data

SQL · mukulg712
13 hours ago
-- 1. Create the products table CREATE TABLE products ( product_id INT PRIMARY KEY, category VARCHAR(50), name VARCHAR(50) ); -- 2. Insert the sample data (with missing category fields) INSERT INTO products (product_id, category, name)

1512

C++ · chwj0608
13 hours ago
#include <iostream> using namespace std; int n; int arr[101][101] = {0,}; int visited[101][101] = {0,}; void f(int x,int y,int s){ if (x > n || x < 1 || y > n || y < 1 ){

1512

C++ · chwj0608
13 hours ago
#include <iostream> using namespace std; int n; int arr[101][101] = {0,}; int visited[101][101] = {0,}; void f(int x,int y,int s){ if (x > n || x < 1 || y > n || y < 1 ){

Proyecto con async

Python · an anonymous user
13 hours ago
#core/CLI.py import subprocess import typer app = typer.Typer() @app.command() def up(): try:

Linear-Scan-maximo-number

Python · cetzal
13 hours ago
def maxNumber(arr) -> int: x = 0 for n in arr: if n > x: x = n return x print(maxNumber([8, 3, 5, 1, 2]))

Proyecto con async

Python · an anonymous user
13 hours ago
#core/CLI.py import subprocess import typer app = typer.Typer() @app.command() def up(): try:

script.lua

Lua · an anonymous user
13 hours ago
vanilla_model.PLAYER:setVisible(false)

Proyecto con async

Python · an anonymous user
13 hours ago
#core/CLI.py import subprocess import typer app = typer.Typer() @app.command() def up(): try:

예행

Python · mijeong
13 hours ago
''' m = int(input('몇 월 인가요?: ')) day30 = [4,6,9,11] if m == 2: print(m,'월은 28일 까지 있습니다') elif m in day30: print(m, "월은 30일 까지 있습니다") else :