Submission #976602

#TimeUsernameProblemLanguageResultExecution timeMemory
976602IsamCrayfish scrivener (IOI12_scrivener)C++17
Compilation error
0 ms0 KiB
#include<bits/stdc++.h>
using namespace std;

string s[1000001];

int tot;

void Init();

void TypeLetter(char L){
	++tot;
	s[tot] = s[tot-1] + L;
	
}

void UndoCommands(int U){
	s[tot] = s[tot - U];
	
}

char GetLetter(int P){
	return s[tot][P-1];
}

Compilation message (stderr)

/usr/bin/ld: /tmp/ccDdvQOd.o: in function `main':
grader.cpp:(.text.startup+0x63): undefined reference to `Init()'
collect2: error: ld returned 1 exit status