View a.gao.cc
#include <stdio.h> | |
#include <string.h> | |
using namespace std; | |
char** str_split(const char* input, int* num) { | |
/* implement please */ | |
*num = 2; | |
int len = strlen(input); | |
// escape the leading whitespace |