sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh
#include <iostream> | |
#include <vector> | |
using namespace std; | |
int big_average(const vector<int> &vec) { | |
// we want sum(vec) / vec.size() | |
int a = vec.size(), quotient = 0, remainder = 0; |