C ++ 14, 178 176 174 155 142 135 ไบต์
ส่ง
#include<list>
#include<algorithm>
[](auto&l){auto e=end(l),b=begin(l);l.size()^count(b,e,*b)?++*min_element(b,e):(l.push_back(1),0);};
การภาวนา
std::list<int> s = {4, 4, 9, 4};
//invoke like this
auto i = [](auto&l){auto e=end(l),b=begin(l);l.size()^count(b,e,*b)?++*min_element(b,e):(l.push_back(1),0);};
i(s);
//or like that
[](auto&l){auto e=end(l),b=begin(l);l.size()^count(b,e,*b)?++*min_element(b,e):(l.push_back(1),0);}(s);
ungolfed
#include <list>
#include <algorithm>
#include <iostream>
using namespace std;
void i(list<int>& l) {
auto e = l.end(), b = l.begin();
if (l.size() == count(b, e, l.front())) {
l.push_back(1);
} else {
++*min_element(b, e);
}
}
int main() {
list<int> s = {4, 4, 9, 4};
//invoke like this
i(s);
for (auto o:s)
std::cout << o << ' ';
std::cout << std::endl;
}
นี่เป็นครั้งแรกที่ฉันเล่นกอล์ฟ
แก้ไข: ลืมที่จะพูดถึงคุณต้องรวบรวมมันอย่างน้อย -std=c++11
-std=c++14
แก้ไข 2: ฉันรู้ว่าฉันสามารถออกจากพื้นที่ในการรวม #include <list>
EDIT3: บันทึกอีกสองไบต์โดยแทนที่l.begin()
ด้วยbegin(l)
EDIT4: บันทึกอีก 19 (!) ไบต์ขอบคุณ @Quentin (ดูความคิดเห็นของเขา)
EDIT5: เควนตินโกนทิ้งไปอีก 13 ไบต์ขอบคุณ!
EDIT6: ตามที่ TuukkaX ชี้ให้เห็นว่า lambdas / ฟังก์ชั่นที่ไม่ได้ตั้งชื่อก็เพียงพอแล้วดังนั้นฉันจึงลบ the auto i=
ในจำนวน bytecount