Recent projects

reverse_list

C · Don_Matteo
3 hours ago
#include <stdio.h> #include <stdlib.h> struct nodoLista { int valore; struct nodoLista *nextPtr; }; typedef struct nodoLista Lista;

chp 4 homework 3

SQL · ShirlyR
3 hours ago
-- List the last name and first name of every owner who lives in Seattle. CREATE TABLE OWNER ( OWNER_NUM CHAR (5) PRIMARY KEY, LAST_NAME VARCHAR (10), FIRST_NAME VARCHAR (10), ADDRESS CHAR (25), CITY VARCHAR (10), STATE CHAR(

CapybaraScripts

Lua · an anonymous user
3 hours ago
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "Capybara Field", Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon

uncommon-chars

Python · cetzal
3 hours ago
def uncommonChars(s1, s2): #code here freq1 = [False] * 26 freq2 = [False] * 26 # Marcar caracteres presentes en s1 for c in s1: freq1[ord(c) - ord('a')] = True # Marcar caracteres presentes en s2

EngineeringTestSKADRA

Octave · asimard
3 hours ago
clear; clc; %% Parameters params.Cd = 0.40; params.A = 1.2; params.m = 900; params.LD = 2.5; params.re = 6371000;

CapybaraScripts

Lua · an anonymous user
3 hours ago
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "Capybara Field", Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon

chp 4 homework 2

SQL · ShirlyR
3 hours ago
-- List the complete PROPERTY table (all rows and all columns) CREATE TABLE PROPERTY ( PROPERTY_ID INT (2) PRIMARY KEY, OFFICE_NUM INT (1), ADDRESS CHAR (25), SQR_FT INT (4), BDRMS INT(1), FLOORS INT(1), MONTHLY_RENT INT

Deliverable 2

MongoDB · B33zlla
3 hours ago
// 2.1) CREATE FIVE COLLECTIONS db.createCollection("Members"); db.createCollection("Authors"); db.createCollection("Books"); db.createCollection("BorrowedBooks"); db.createCollection("BookAuthors"); // 2.2) INSERT SAMPLE DATA db.Members.insertMan

Mo_java1

Java · LEE_SEONG_HO
3 hours ago
import java.util.*; import java.lang.*; import java.io.*; // The main method must be in a class named "Main". public class Main { public static void main(String[] args) { int sum = fact(5); System.out.println(sum);

Deliverable 2

MongoDB · an anonymous user
3 hours ago
use EduvosLibraryDB db.createCollection("Author") db.createCollection("Book") db.createCollection("BookAuthor") db.createCollection("Member") db.createCollection("BorrowedBooks") db.Author.insertMany([ {

free(Dispari)

C · Don_Matteo
3 hours ago
#include <stdio.h> #include <stdlib.h> struct nodoLista { int valore; struct nodoLista *nextPtr; }; typedef struct nodoLista Lista;

Ejercicio 3. Búsqueda de un código de asignatura

C++ · an anonymous user
3 hours ago
//Ejercicio 3. Búsqueda de un código de asignatura #include <iostream> // Función para realizar la búsqueda secuencial int busquedaSecuencial(int arr[], int n, int valor) { for (int i = 0; i < n; i++) { if (arr[i] == valor) {

Temperatura

Bash · an anonymous user
3 hours ago
#!/bin/bash echo "Digite a temperatura:" read temperatura if [ $temperatura -gt 30 ] then echo "Muito quente" elif [ $temperatura -ge 20 ] && [ $temperatura -le 30 ]

字符对调

C++ · an anonymous user
3 hours ago
#include <iostream> #include <cstring> using namespace std; class STR { private: char *s; // 指向待处理的字符串 // 将指针 t1、t2 之间的字符前后逆序 void backward(char *t1, char *t2) {

字符对调

C++ · an anonymous user
3 hours ago
#include <iostream> #include <cstring> using namespace std; class STR { private: char *s; // 指向待处理的字符串 // 将指针 t1、t2 之间的字符前后逆序 void backward(char *t1, char *t2) {

Ejercicio 2. Búsqueda de un número de cuenta de la UNAH

C++ · an anonymous user
3 hours ago
//Ejercicio 2. Búsqueda de un número de cuenta de la UNAH #include <iostream> // Función para realizar la búsqueda secuencial int busquedaSecuencial(int cuentas[], int n, int cuentaBuscada) { for (int i = 0; i < n; i++) { if (cuentas[i]

Ejercicio 1. Búsqueda de un número de cuenta de la UNAH

C++ · an anonymous user
3 hours ago
//Ejercicio 1. Búsqueda de un número en un arreglo #include <iostream> // Función para realizar la búsqueda secuencial int busquedaSecuencial(int arr[], int n, int valor) { for (int i = 0; i < n; i++) { if (arr[i] == valor) {

CapybaraScripts

Lua · an anonymous user
3 hours ago
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "Capybara Field", Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon

SoulsBlacksmith

NodeJS · an anonymous user
3 hours ago
//============================================================================= // SoulsBlacksmith.js //============================================================================= /*: * @target MZ * @plugindesc [v1.0] Sistema de upgrade de arma

SoulsBlacksmith

NodeJS · an anonymous user
3 hours ago
//============================================================================= // SoulsBlacksmith.js //============================================================================= /*: * @target MZ * @plugindesc [v1.0] Sistema de upgrade de arma