1
0

🎉」 init: started span

This commit is contained in:
2025-04-14 20:47:58 +02:00
parent 35fc155f65
commit ec713f8528
5 changed files with 90 additions and 0 deletions

25
ex01/Span.hpp Normal file
View File

@ -0,0 +1,25 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Span.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/04/14 19:54:33 by adjoly #+# #+# */
/* Updated: 2025/04/14 20:09:51 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#pragma once
class Span {
public:
Span(unsigned int);
~Span(void);
void addNumber(int);
int shortestSpan(void);
int longestSpan(void);
private:
};