Added previous arduino implementations.

This commit is contained in:
2026-08-07 13:29:57 +02:00
commit 2eb04509db
9 changed files with 179 additions and 0 deletions

19
Problem3.hpp Normal file
View File

@@ -0,0 +1,19 @@
#ifndef Problem3_h
#define Problem3_h
#include "ProblemBase.hpp"
#include "Vector.h"
class Problem3 : public ProblemBase {
private:
Vector<unsigned long> primes;
unsigned long iterator = 2;
float fl_input;
public:
Problem3();
bool Step();
};
#endif