際際滷

際際滷Share a Scribd company logo
Episode 1
The Challenge
Rules
 Share your screen while you work
 You can use the web
 You can copy code snippets from the web
 You can use anything from the standard library
 You may use C++20 (or below)
2
Notes
 Be creative, but more important, be on time!
 You will get a link to these slides + some bootstrap code
3
The Challenge
4
NumCollection c1("-17, -10--5, 20-25, 50");
assert(c1.contains(-10));
assert(!c1.contains(-3));
NumCollection c2("-1000000-5, 1000000");
assert(c2.contains(1000000));
assert(!c2.contains(6));
NumCollection c3("0-5, 10-15, 20, 30-35, 40"); // it can be a much longer sequence
assert(c3.contains(34));
assert(!c3.contains(36));
// limits:
// min = std::numeric_limits<long>::lowest()
// max = std::numeric_limits<long>::max()
5
NumCollection - Mandatory Requirements
 Constructor to support above use cases
 A contains(long) function - getting a long and returning bool
Assumptions:
 You can assume that the input to NumCollection is sorted and
without repetitions (each number may appear only once)
 You can throw an exception on bad input
6
Design Considerations
 Think of both runtime and memory efficiency
 You may want to handle different inputs differently
e.g:
"10-15, 20-25, 30-35, 40, 43, 45, 47, 50, 52, 55, 57, 59-60"
vs.
"-1000000-5, 1000000"
7
Extra Bonuses (pick any or none)
 Implement proper tests (e.g. with gtest, catch2 or any other)
 Support unsorted inputs and/or repetitions of numbers in the input
 Support for add function(s) - thus making NumCollection mutable
 Add iterator support for iterating over all contained elements
 Add a contains(Predicate) function - returning bool
 Add a findAll(Predicate) function - returning NumCollection
 Add an intersect(NumCollection) function - returning NumCollection
 Support for compile time processing (if possible!)
8
Code Bootstrap
You may want to use the sequence parser implemented here:
http://coliru.stacked-crooked.com/a/7b5cab5a64742cad
Note:
You may improve the parsing algorithm if you want.
But this shouldnt be your first task! Or a task at all.
9
10
11

More Related Content

What's hot (6)

Montgolfieres
MontgolfieresMontgolfieres
Montgolfieres
George Martin
京温鉛探艶壊
京温鉛探艶壊京温鉛探艶壊
京温鉛探艶壊
Andre Lenz
Montgolfieres
MontgolfieresMontgolfieres
Montgolfieres
registraciones
Montgolfieres
MontgolfieresMontgolfieres
Montgolfieres
penuela
TALLER FIGURACIN ABSTRACCIN: CASTILLOS MEDIEVALES
TALLER FIGURACIN ABSTRACCIN: CASTILLOS MEDIEVALESTALLER FIGURACIN ABSTRACCIN: CASTILLOS MEDIEVALES
TALLER FIGURACIN ABSTRACCIN: CASTILLOS MEDIEVALES
Silvana961105
京温鉛探艶壊
京温鉛探艶壊京温鉛探艶壊
京温鉛探艶壊
Andre Lenz
Montgolfieres
MontgolfieresMontgolfieres
Montgolfieres
penuela
TALLER FIGURACIN ABSTRACCIN: CASTILLOS MEDIEVALES
TALLER FIGURACIN ABSTRACCIN: CASTILLOS MEDIEVALESTALLER FIGURACIN ABSTRACCIN: CASTILLOS MEDIEVALES
TALLER FIGURACIN ABSTRACCIN: CASTILLOS MEDIEVALES
Silvana961105

Similar to CPP Game Show S01E01 (20)

Presentation slides: "How to get 100% code coverage"
Presentation slides: "How to get 100% code coverage" Presentation slides: "How to get 100% code coverage"
Presentation slides: "How to get 100% code coverage"
Rapita Systems Ltd
C++ and OOPS Crash Course by ACM DBIT | Grejo Joby
C++ and OOPS Crash Course by ACM DBIT | Grejo JobyC++ and OOPS Crash Course by ACM DBIT | Grejo Joby
C++ and OOPS Crash Course by ACM DBIT | Grejo Joby
GrejoJoby1
Static analysis and writing C/C++ of high quality code for embedded systems
Static analysis and writing C/C++ of high quality code for embedded systemsStatic analysis and writing C/C++ of high quality code for embedded systems
Static analysis and writing C/C++ of high quality code for embedded systems
Andrey Karpov
MASTER-CLASS: "CODE COVERAGE ON -CONTROLLER" Sebastian G旦tzinger
MASTER-CLASS: "CODE COVERAGE ON -CONTROLLER" Sebastian G旦tzingerMASTER-CLASS: "CODE COVERAGE ON -CONTROLLER" Sebastian G旦tzinger
MASTER-CLASS: "CODE COVERAGE ON -CONTROLLER" Sebastian G旦tzinger
Ievgenii Katsan
C++ Certified Associate Programmer CPA
C++ Certified Associate Programmer CPAC++ Certified Associate Programmer CPA
C++ Certified Associate Programmer CPA
Isabella789
C multiple choice questions and answers pdf
C multiple choice questions and answers pdfC multiple choice questions and answers pdf
C multiple choice questions and answers pdf
choconyeuquy
C# console applications.docx
C# console applications.docxC# console applications.docx
C# console applications.docx
MehwishKanwal14
SAST and Application Security: how to fight vulnerabilities in the code
SAST and Application Security: how to fight vulnerabilities in the codeSAST and Application Security: how to fight vulnerabilities in the code
SAST and Application Security: how to fight vulnerabilities in the code
Andrey Karpov
Cmis 102 Effective Communication / snaptutorial.com
Cmis 102  Effective Communication / snaptutorial.comCmis 102  Effective Communication / snaptutorial.com
Cmis 102 Effective Communication / snaptutorial.com
HarrisGeorg12
Sangam 19 - PLSQL still the coolest
Sangam 19 - PLSQL still the coolestSangam 19 - PLSQL still the coolest
Sangam 19 - PLSQL still the coolest
Connor McDonald
100 bugs in Open Source C/C++ projects
100 bugs in Open Source C/C++ projects 100 bugs in Open Source C/C++ projects
100 bugs in Open Source C/C++ projects
Andrey Karpov
Cmis 102 Success Begins / snaptutorial.com
Cmis 102 Success Begins / snaptutorial.comCmis 102 Success Begins / snaptutorial.com
Cmis 102 Success Begins / snaptutorial.com
WilliamsTaylorza48
Cmis 102油Enthusiastic Study / snaptutorial.com
Cmis 102油Enthusiastic Study / snaptutorial.comCmis 102油Enthusiastic Study / snaptutorial.com
Cmis 102油Enthusiastic Study / snaptutorial.com
Stephenson22
Beginning direct3d gameprogramming05_thebasics_20160421_jintaeks
Beginning direct3d gameprogramming05_thebasics_20160421_jintaeksBeginning direct3d gameprogramming05_thebasics_20160421_jintaeks
Beginning direct3d gameprogramming05_thebasics_20160421_jintaeks
JinTaek Seo
Price of an Error
Price of an ErrorPrice of an Error
Price of an Error
Andrey Karpov
How to avoid bugs using modern C++
How to avoid bugs using modern C++How to avoid bugs using modern C++
How to avoid bugs using modern C++
PVS-Studio
cscript_controller.pdf
cscript_controller.pdfcscript_controller.pdf
cscript_controller.pdf
VcTrn1
ESL Anyone?
ESL Anyone? ESL Anyone?
ESL Anyone?
DVClub
PVS-Studio. Static code analyzer. Windows/Linux, C/C++/C#. 2017
PVS-Studio. Static code analyzer. Windows/Linux, C/C++/C#. 2017PVS-Studio. Static code analyzer. Windows/Linux, C/C++/C#. 2017
PVS-Studio. Static code analyzer. Windows/Linux, C/C++/C#. 2017
Andrey Karpov
The CppCat Analyzer Checks TortoiseGit
The CppCat Analyzer Checks TortoiseGitThe CppCat Analyzer Checks TortoiseGit
The CppCat Analyzer Checks TortoiseGit
Andrey Karpov
Presentation slides: "How to get 100% code coverage"
Presentation slides: "How to get 100% code coverage" Presentation slides: "How to get 100% code coverage"
Presentation slides: "How to get 100% code coverage"
Rapita Systems Ltd
C++ and OOPS Crash Course by ACM DBIT | Grejo Joby
C++ and OOPS Crash Course by ACM DBIT | Grejo JobyC++ and OOPS Crash Course by ACM DBIT | Grejo Joby
C++ and OOPS Crash Course by ACM DBIT | Grejo Joby
GrejoJoby1
Static analysis and writing C/C++ of high quality code for embedded systems
Static analysis and writing C/C++ of high quality code for embedded systemsStatic analysis and writing C/C++ of high quality code for embedded systems
Static analysis and writing C/C++ of high quality code for embedded systems
Andrey Karpov
MASTER-CLASS: "CODE COVERAGE ON -CONTROLLER" Sebastian G旦tzinger
MASTER-CLASS: "CODE COVERAGE ON -CONTROLLER" Sebastian G旦tzingerMASTER-CLASS: "CODE COVERAGE ON -CONTROLLER" Sebastian G旦tzinger
MASTER-CLASS: "CODE COVERAGE ON -CONTROLLER" Sebastian G旦tzinger
Ievgenii Katsan
C++ Certified Associate Programmer CPA
C++ Certified Associate Programmer CPAC++ Certified Associate Programmer CPA
C++ Certified Associate Programmer CPA
Isabella789
C multiple choice questions and answers pdf
C multiple choice questions and answers pdfC multiple choice questions and answers pdf
C multiple choice questions and answers pdf
choconyeuquy
C# console applications.docx
C# console applications.docxC# console applications.docx
C# console applications.docx
MehwishKanwal14
SAST and Application Security: how to fight vulnerabilities in the code
SAST and Application Security: how to fight vulnerabilities in the codeSAST and Application Security: how to fight vulnerabilities in the code
SAST and Application Security: how to fight vulnerabilities in the code
Andrey Karpov
Cmis 102 Effective Communication / snaptutorial.com
Cmis 102  Effective Communication / snaptutorial.comCmis 102  Effective Communication / snaptutorial.com
Cmis 102 Effective Communication / snaptutorial.com
HarrisGeorg12
Sangam 19 - PLSQL still the coolest
Sangam 19 - PLSQL still the coolestSangam 19 - PLSQL still the coolest
Sangam 19 - PLSQL still the coolest
Connor McDonald
100 bugs in Open Source C/C++ projects
100 bugs in Open Source C/C++ projects 100 bugs in Open Source C/C++ projects
100 bugs in Open Source C/C++ projects
Andrey Karpov
Cmis 102 Success Begins / snaptutorial.com
Cmis 102 Success Begins / snaptutorial.comCmis 102 Success Begins / snaptutorial.com
Cmis 102 Success Begins / snaptutorial.com
WilliamsTaylorza48
Cmis 102油Enthusiastic Study / snaptutorial.com
Cmis 102油Enthusiastic Study / snaptutorial.comCmis 102油Enthusiastic Study / snaptutorial.com
Cmis 102油Enthusiastic Study / snaptutorial.com
Stephenson22
Beginning direct3d gameprogramming05_thebasics_20160421_jintaeks
Beginning direct3d gameprogramming05_thebasics_20160421_jintaeksBeginning direct3d gameprogramming05_thebasics_20160421_jintaeks
Beginning direct3d gameprogramming05_thebasics_20160421_jintaeks
JinTaek Seo
Price of an Error
Price of an ErrorPrice of an Error
Price of an Error
Andrey Karpov
How to avoid bugs using modern C++
How to avoid bugs using modern C++How to avoid bugs using modern C++
How to avoid bugs using modern C++
PVS-Studio
cscript_controller.pdf
cscript_controller.pdfcscript_controller.pdf
cscript_controller.pdf
VcTrn1
ESL Anyone?
ESL Anyone? ESL Anyone?
ESL Anyone?
DVClub
PVS-Studio. Static code analyzer. Windows/Linux, C/C++/C#. 2017
PVS-Studio. Static code analyzer. Windows/Linux, C/C++/C#. 2017PVS-Studio. Static code analyzer. Windows/Linux, C/C++/C#. 2017
PVS-Studio. Static code analyzer. Windows/Linux, C/C++/C#. 2017
Andrey Karpov
The CppCat Analyzer Checks TortoiseGit
The CppCat Analyzer Checks TortoiseGitThe CppCat Analyzer Checks TortoiseGit
The CppCat Analyzer Checks TortoiseGit
Andrey Karpov

Recently uploaded (20)

Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...
Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...
Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...
BradBedford3
Marketo Engage North America Virtual User Group: Adobe Summit 2025 recap
Marketo Engage North America Virtual User Group: Adobe Summit 2025 recapMarketo Engage North America Virtual User Group: Adobe Summit 2025 recap
Marketo Engage North America Virtual User Group: Adobe Summit 2025 recap
BradBedford3
Internet Download Manager (IDM) Crack + Lisence key Latest version 2025
Internet Download Manager (IDM) Crack + Lisence key Latest version 2025Internet Download Manager (IDM) Crack + Lisence key Latest version 2025
Internet Download Manager (IDM) Crack + Lisence key Latest version 2025
shahzad011kp
Windows 8.1 Pro Activator Crack Version [April-2025]
Windows 8.1 Pro Activator Crack Version [April-2025]Windows 8.1 Pro Activator Crack Version [April-2025]
Windows 8.1 Pro Activator Crack Version [April-2025]
jhonjosh91
The Evolution of Microsoft Project Portfolio Management
The Evolution of Microsoft Project Portfolio ManagementThe Evolution of Microsoft Project Portfolio Management
The Evolution of Microsoft Project Portfolio Management
OnePlan Solutions
Rights, Copyrights, and Licences for Software Engineering Research v1.0
Rights, Copyrights, and Licences for Software Engineering Research v1.0Rights, Copyrights, and Licences for Software Engineering Research v1.0
Rights, Copyrights, and Licences for Software Engineering Research v1.0
Yann-Ga谷l Gu辿h辿neuc
Adobe Illustrator Crack Download (Latest 2025)
Adobe Illustrator Crack Download (Latest 2025)Adobe Illustrator Crack Download (Latest 2025)
Adobe Illustrator Crack Download (Latest 2025)
basitayoubi007
Wilcom Embroidery Studio E Crack 2025 FREE
Wilcom Embroidery Studio E Crack 2025 FREEWilcom Embroidery Studio E Crack 2025 FREE
Wilcom Embroidery Studio E Crack 2025 FREE
muhammadwaqaryounus6
EMEA Virtual Marketo User Group - Adobe Summit 2025 Round Up
EMEA Virtual Marketo User Group - Adobe Summit 2025 Round UpEMEA Virtual Marketo User Group - Adobe Summit 2025 Round Up
EMEA Virtual Marketo User Group - Adobe Summit 2025 Round Up
BradBedford3
Microsoft Office Crack + Product key Download Free Version 2025
Microsoft Office Crack + Product key Download Free Version 2025Microsoft Office Crack + Product key Download Free Version 2025
Microsoft Office Crack + Product key Download Free Version 2025
hamza752796
Migrating GitHub Actions with Nested Virtualization to Cloud Native Ecosystem...
Migrating GitHub Actions with Nested Virtualization to Cloud Native Ecosystem...Migrating GitHub Actions with Nested Virtualization to Cloud Native Ecosystem...
Migrating GitHub Actions with Nested Virtualization to Cloud Native Ecosystem...
KCD Guadalajara
Pazu Netflix Video Downloader 1.7.3 Crack Free Download 2025
Pazu Netflix Video Downloader 1.7.3 Crack Free Download 2025Pazu Netflix Video Downloader 1.7.3 Crack Free Download 2025
Pazu Netflix Video Downloader 1.7.3 Crack Free Download 2025
numan02kp
praxistreffen-bamberg-2025-worksophop.pdf
praxistreffen-bamberg-2025-worksophop.pdfpraxistreffen-bamberg-2025-worksophop.pdf
praxistreffen-bamberg-2025-worksophop.pdf
4Science
Top Online Food Ordering Script Company - Become Vendor
Top Online Food Ordering Script Company - Become VendorTop Online Food Ordering Script Company - Become Vendor
Top Online Food Ordering Script Company - Become Vendor
Kevin Miller
Microsoft Office Crack 2019 Free Download
Microsoft Office Crack 2019 Free DownloadMicrosoft Office Crack 2019 Free Download
Microsoft Office Crack 2019 Free Download
tayab01kp
IBM / MAINFRAME /RACF security-guide_pdf.pdf
IBM / MAINFRAME /RACF security-guide_pdf.pdfIBM / MAINFRAME /RACF security-guide_pdf.pdf
IBM / MAINFRAME /RACF security-guide_pdf.pdf
WILSON990330
Adobe Illustrator Crack Download (Latest 2025)
Adobe Illustrator Crack Download (Latest 2025)Adobe Illustrator Crack Download (Latest 2025)
Adobe Illustrator Crack Download (Latest 2025)
blouch36kp
Internet Download Manager Crack Latest version 2025
Internet Download Manager  Crack Latest version 2025Internet Download Manager  Crack Latest version 2025
Internet Download Manager Crack Latest version 2025
mohsinrazakpa26
Coreldraw 2021 Crack Latest Version 2025
Coreldraw 2021 Crack Latest Version 2025Coreldraw 2021 Crack Latest Version 2025
Coreldraw 2021 Crack Latest Version 2025
blouch31kp
Tour Booking, Booking Service, Tour Agents, Hotel Booking in odoo
Tour Booking, Booking Service, Tour Agents, Hotel Booking in odooTour Booking, Booking Service, Tour Agents, Hotel Booking in odoo
Tour Booking, Booking Service, Tour Agents, Hotel Booking in odoo
AxisTechnolabs
Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...
Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...
Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...
BradBedford3
Marketo Engage North America Virtual User Group: Adobe Summit 2025 recap
Marketo Engage North America Virtual User Group: Adobe Summit 2025 recapMarketo Engage North America Virtual User Group: Adobe Summit 2025 recap
Marketo Engage North America Virtual User Group: Adobe Summit 2025 recap
BradBedford3
Internet Download Manager (IDM) Crack + Lisence key Latest version 2025
Internet Download Manager (IDM) Crack + Lisence key Latest version 2025Internet Download Manager (IDM) Crack + Lisence key Latest version 2025
Internet Download Manager (IDM) Crack + Lisence key Latest version 2025
shahzad011kp
Windows 8.1 Pro Activator Crack Version [April-2025]
Windows 8.1 Pro Activator Crack Version [April-2025]Windows 8.1 Pro Activator Crack Version [April-2025]
Windows 8.1 Pro Activator Crack Version [April-2025]
jhonjosh91
The Evolution of Microsoft Project Portfolio Management
The Evolution of Microsoft Project Portfolio ManagementThe Evolution of Microsoft Project Portfolio Management
The Evolution of Microsoft Project Portfolio Management
OnePlan Solutions
Rights, Copyrights, and Licences for Software Engineering Research v1.0
Rights, Copyrights, and Licences for Software Engineering Research v1.0Rights, Copyrights, and Licences for Software Engineering Research v1.0
Rights, Copyrights, and Licences for Software Engineering Research v1.0
Yann-Ga谷l Gu辿h辿neuc
Adobe Illustrator Crack Download (Latest 2025)
Adobe Illustrator Crack Download (Latest 2025)Adobe Illustrator Crack Download (Latest 2025)
Adobe Illustrator Crack Download (Latest 2025)
basitayoubi007
Wilcom Embroidery Studio E Crack 2025 FREE
Wilcom Embroidery Studio E Crack 2025 FREEWilcom Embroidery Studio E Crack 2025 FREE
Wilcom Embroidery Studio E Crack 2025 FREE
muhammadwaqaryounus6
EMEA Virtual Marketo User Group - Adobe Summit 2025 Round Up
EMEA Virtual Marketo User Group - Adobe Summit 2025 Round UpEMEA Virtual Marketo User Group - Adobe Summit 2025 Round Up
EMEA Virtual Marketo User Group - Adobe Summit 2025 Round Up
BradBedford3
Microsoft Office Crack + Product key Download Free Version 2025
Microsoft Office Crack + Product key Download Free Version 2025Microsoft Office Crack + Product key Download Free Version 2025
Microsoft Office Crack + Product key Download Free Version 2025
hamza752796
Migrating GitHub Actions with Nested Virtualization to Cloud Native Ecosystem...
Migrating GitHub Actions with Nested Virtualization to Cloud Native Ecosystem...Migrating GitHub Actions with Nested Virtualization to Cloud Native Ecosystem...
Migrating GitHub Actions with Nested Virtualization to Cloud Native Ecosystem...
KCD Guadalajara
Pazu Netflix Video Downloader 1.7.3 Crack Free Download 2025
Pazu Netflix Video Downloader 1.7.3 Crack Free Download 2025Pazu Netflix Video Downloader 1.7.3 Crack Free Download 2025
Pazu Netflix Video Downloader 1.7.3 Crack Free Download 2025
numan02kp
praxistreffen-bamberg-2025-worksophop.pdf
praxistreffen-bamberg-2025-worksophop.pdfpraxistreffen-bamberg-2025-worksophop.pdf
praxistreffen-bamberg-2025-worksophop.pdf
4Science
Top Online Food Ordering Script Company - Become Vendor
Top Online Food Ordering Script Company - Become VendorTop Online Food Ordering Script Company - Become Vendor
Top Online Food Ordering Script Company - Become Vendor
Kevin Miller
Microsoft Office Crack 2019 Free Download
Microsoft Office Crack 2019 Free DownloadMicrosoft Office Crack 2019 Free Download
Microsoft Office Crack 2019 Free Download
tayab01kp
IBM / MAINFRAME /RACF security-guide_pdf.pdf
IBM / MAINFRAME /RACF security-guide_pdf.pdfIBM / MAINFRAME /RACF security-guide_pdf.pdf
IBM / MAINFRAME /RACF security-guide_pdf.pdf
WILSON990330
Adobe Illustrator Crack Download (Latest 2025)
Adobe Illustrator Crack Download (Latest 2025)Adobe Illustrator Crack Download (Latest 2025)
Adobe Illustrator Crack Download (Latest 2025)
blouch36kp
Internet Download Manager Crack Latest version 2025
Internet Download Manager  Crack Latest version 2025Internet Download Manager  Crack Latest version 2025
Internet Download Manager Crack Latest version 2025
mohsinrazakpa26
Coreldraw 2021 Crack Latest Version 2025
Coreldraw 2021 Crack Latest Version 2025Coreldraw 2021 Crack Latest Version 2025
Coreldraw 2021 Crack Latest Version 2025
blouch31kp
Tour Booking, Booking Service, Tour Agents, Hotel Booking in odoo
Tour Booking, Booking Service, Tour Agents, Hotel Booking in odooTour Booking, Booking Service, Tour Agents, Hotel Booking in odoo
Tour Booking, Booking Service, Tour Agents, Hotel Booking in odoo
AxisTechnolabs

CPP Game Show S01E01

  • 2. Rules Share your screen while you work You can use the web You can copy code snippets from the web You can use anything from the standard library You may use C++20 (or below) 2
  • 3. Notes Be creative, but more important, be on time! You will get a link to these slides + some bootstrap code 3
  • 5. NumCollection c1("-17, -10--5, 20-25, 50"); assert(c1.contains(-10)); assert(!c1.contains(-3)); NumCollection c2("-1000000-5, 1000000"); assert(c2.contains(1000000)); assert(!c2.contains(6)); NumCollection c3("0-5, 10-15, 20, 30-35, 40"); // it can be a much longer sequence assert(c3.contains(34)); assert(!c3.contains(36)); // limits: // min = std::numeric_limits<long>::lowest() // max = std::numeric_limits<long>::max() 5
  • 6. NumCollection - Mandatory Requirements Constructor to support above use cases A contains(long) function - getting a long and returning bool Assumptions: You can assume that the input to NumCollection is sorted and without repetitions (each number may appear only once) You can throw an exception on bad input 6
  • 7. Design Considerations Think of both runtime and memory efficiency You may want to handle different inputs differently e.g: "10-15, 20-25, 30-35, 40, 43, 45, 47, 50, 52, 55, 57, 59-60" vs. "-1000000-5, 1000000" 7
  • 8. Extra Bonuses (pick any or none) Implement proper tests (e.g. with gtest, catch2 or any other) Support unsorted inputs and/or repetitions of numbers in the input Support for add function(s) - thus making NumCollection mutable Add iterator support for iterating over all contained elements Add a contains(Predicate) function - returning bool Add a findAll(Predicate) function - returning NumCollection Add an intersect(NumCollection) function - returning NumCollection Support for compile time processing (if possible!) 8
  • 9. Code Bootstrap You may want to use the sequence parser implemented here: http://coliru.stacked-crooked.com/a/7b5cab5a64742cad Note: You may improve the parsing algorithm if you want. But this shouldnt be your first task! Or a task at all. 9
  • 10. 10
  • 11. 11