Recent projects

ITDSA Deliverable 2

MongoDB · an anonymous user
13 hours ago
db.createCollection("authors"); db.createCollection("books"); db.createCollection("bookauthor"); db.createCollection("members"); db.createCollection("borrowedbooks"); show collections db.authors.insertMany([ { authorID: "au01", firstName: "Adewal

최소 동전 개수

C · sim7391
13 hours ago
#include <stdio.h> #include <string.h> #include <stdlib.h> int DP[10000]; int min(int a, int b){ return (a > b) ? b : a; }

Bank

SQL · an anonymous user
13 hours ago
create table customer ( customer_id varchar(10) not null, customer_name varchar(20) not null, customer_street varchar(30), customer_city varchar(30), primary key (customer_id)); create table branch ( branch_name varchar(15), branch_city varcha

Bank

SQL · an anonymous user
13 hours ago
CREATE DATABASE Bank; USE Bank; create table customer ( customer_id varchar(10) not null, customer_name varchar(20) not null, customer_street varchar(30), customer_city varchar(30),

한줄 gcd

C · an anonymous user
13 hours ago
#include <stdio.h> #include <stdbool.h> #include <stdlib.h> int gcd(int a, int b) { if (true) { return (a > b) ? ((a % b != 0) ? ((a % (a % b) == 0 && b % (a % b) == 0) ? a % b : 1) : b) : ((a % b != 0) ? ((a % (b % a) == 0 && b % (b % a) == 0)

Q2 MongoDB

MongoDB · Matlou
13 hours ago
// AUTHOR db.author.insertMany([ { authorID: "A001", firstName: "Steve", lastName: "Shakaman" }, { authorID: "A002", firstName: "Lerato", lastName: "Jonasi" } ]); // BOOK db.book.insertMany([ { ISBN: "9780435905255", title: "Database systems"

GTA 5 KIDDIONS MONEY DROP 1.68

Lua · an anonymous user
13 hours ago
local dropAmount = 50000 local isEnabled = false function DropMoney(playerPos) if isEnabled then local moneyPickup = CreatePickup("PICKUP_MONEY_CASE", playerPos.x, playerPos.y, playerPos.z, 0, dropAmount) Citizen.Wait(5000)

데이터필터링(배열/조건)

C++ · lattelim
13 hours ago
#include <iostream> int main() { int data[] = {10, 40, -1, 50, 20, 70, 80, -1, 90}; int size = sizeof(data) / sizeof(data[0]); int writeIndex = 0; int maxsize = 3;

Project

Bash · an anonymous user
13 hours ago
#!/bin/bash # Task 1.2 # Security Audit Script # Lists all SUID files echo "SUID File Audit" DATE=$(date) echo "Scan Date: $DATE"

Deliverable 2

MongoDB · Loeloe
13 hours ago
// 2.1 Create the five (5) collections identified from the ERD use eduvos_library; db.createCollection("authors"); db.createCollection("books"); db.createCollection("bookauthors"); // junction collection: resolves M:N between BOOK and AUTHOR db.

DBG Digital

Lua · an anonymous user
13 hours ago
Ap livro digital

DBG Digital

Lua · an anonymous user
13 hours ago
Ap livro digital

2.2

NodeJS · Matlou
13 hours ago
// AUTHOR db.author.insertMany([ { authorID: "A001", firstName: "Steve", lastName: "Shakaman" }, { authorID: "A002", firstName: "Lerato", lastName: "Jonasi" } ]); // BOOK db.book.insertMany([ { ISBN: "9780435905255", title: "Database systems"

2.2

NodeJS · Matlou
13 hours ago
// AUTHOR db.author.insertMany([ { authorID: "A001", firstName: "Steve", lastName: "Shakaman" }, { authorID: "A002", firstName: "Lerato", lastName: "Jonasi" } ]); // BOOK db.book.insertMany([ { ISBN: "9780435905255", title: "Database systems"

Deliverable 2

MongoDB · an anonymous user
13 hours ago
// 2.1 Create the five (5) collections identified from the ERD use eduvos_library; db.createCollection("authors"); db.createCollection("books"); db.createCollection("bookauthors"); // junction collection: resolves M:N between BOOK and AUTHOR db.

장애물;

C++ · chwj0608
13 hours ago
#include <iostream> #include <algorithm> using namespace std; int main() { int n; cin >> n; int b[n]; for(int i = 0;i < n;i++){ cin >> b[i];

장애물;

C++ · chwj0608
13 hours ago
#include <iostream> #include <algorithm> using namespace std; int main() { int n; cin >> n; int b[n]; for(int i = 0;i < n;i++){ cin >> b[i];

파스칼의 삼각형 DP버전

C · sim7391
13 hours ago
#include <stdio.h> #include <string.h> #include <stdlib.h> int n, m; int DP[100][100]; void pascal(int x, int y){ if (x >= n) return;

Test

NodeJS · an anonymous user
13 hours ago
console.log("Hallo welt!"); console.log('Wie geht es dir?') console.log('ERROR') console.log('👹👹👹👹👹👹👹👹👹👹👹👹👹👹') console.log('Spaß')

課題1-1

C · an anonymous user
13 hours ago
#include <stdio.h> int main() { printf("Hello world!\n"); return 0; }