aboutsummaryrefslogtreecommitdiff
path: root/cutTheSticksJoe
diff options
context:
space:
mode:
Diffstat (limited to 'cutTheSticksJoe')
-rw-r--r--cutTheSticksJoe/cutTheSticksJoe.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/cutTheSticksJoe/cutTheSticksJoe.cpp b/cutTheSticksJoe/cutTheSticksJoe.cpp
deleted file mode 100644
index 4504062..0000000
--- a/cutTheSticksJoe/cutTheSticksJoe.cpp
+++ /dev/null
@@ -1,21 +0,0 @@
-#include <bits/stdc++.h>
-
-using namespace std;
-
-int main() {
- ios::sync_with_stdio(false);
- cin.tie(0);
- int n;
- cin >> n;
- map<int, int> mp;
- for (int i = 0; i < n; i++) {
- int x;
- cin >> x;
- ++mp[x];
- }
- for (auto p : mp) {
- cout << n << '\n';
- n -= p.second;
- }
- return 0;
-}