From 91ca20b8f78eeeb74fc4eea6eeecdca9fefa5656 Mon Sep 17 00:00:00 2001 From: omagdy7 Date: Tue, 1 Nov 2022 11:51:53 +0200 Subject: Added new problems --- DpWithPrefixSum/main.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 DpWithPrefixSum/main.cpp (limited to 'DpWithPrefixSum/main.cpp') diff --git a/DpWithPrefixSum/main.cpp b/DpWithPrefixSum/main.cpp new file mode 100644 index 0000000..ecc5aa5 --- /dev/null +++ b/DpWithPrefixSum/main.cpp @@ -0,0 +1,9 @@ +#include + +using namespace std; + +int main () { + int n; + cin >> n; + vector prefix(n); +} -- cgit v1.2.3