Skip to content

Instantly share code, notes, and snippets.

@greatericontop
greatericontop / fast.cpp
Last active February 21, 2026 00:33
Stack Overflow Coins DP Challenge
#include <bits/stdc++.h>
using namespace std;
void solve() {
int n, target;
cin >> n >> target;
vector<int> coins(n);
for (int i = 0; i < n; i++) {
cin >> coins[i];
@greatericontop
greatericontop / main.md
Created August 24, 2025 21:56
The Purdue CS 180 Test Out

The Purdue CS 180 Test Out

A few notes:

This guide is intended to build off Kart's Optimizing Purdue CS and go more in depth on how to pass the CS 180 test out if you choose to attempt it.

I took and passed the test out in fall of 2025. The information here is based off that test, so this could become out of date in the future.