Let's make sure that when we create issues and give them numbers, there should be a convention that does not use the title 'Issue'
# Write a test
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
bool isValidNumber(const char *input) {
char *endptr;
strtol(input, &endptr, 10);
return (*input != '\0' && *endptr == '\0');
}
Description
Let's make sure that when we create issues and give them numbers, there should be a convention that does not use the title 'Issue'
AC
Notes