This commit is contained in:
2025-01-13 19:20:29 -05:00
parent dff5fd0c60
commit 38af965ec5
4 changed files with 39 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
HOMEWORK 1: Spotify Playlists
NAME: < insert name >
NAME: Jinshan Zhou
COLLABORATORS AND OTHER RESOURCES:
@@ -17,7 +17,7 @@ own, as described in "Academic Integrity for Homework" handout.
ESTIMATE OF # OF HOURS SPENT ON THIS ASSIGNMENT: < insert # hours >
ESTIMATE OF # OF HOURS SPENT ON THIS ASSIGNMENT: 2 hr

BIN
hws/spotify_playlists/nyplaylists Executable file

Binary file not shown.

View File

@@ -0,0 +1,9 @@
//import some basic library
#include <iostream>
#include <cmath>
#include <cstdlib>
int main() {
std::cout << "Hello, World!" << std::endl;
return 0;
}