-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathkeystrokes.c
51 lines (51 loc) · 1.05 KB
/
keystrokes.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
void delete (char arr[], int n, int pos)
{
for (int i = pos; i < n; i++)
{
arr[i] = arr[i + 1];
}
}
int main()
{
int t;
scanf("%d", &t);
while (t--)
{
fflush(stdin);
char st[100];
scanf("%[^\n]s", st);
int len = strlen(st);
for (int i = len - 1; i >= 0; i--)
{
if (st[i] == '^')
{
delete (st, len, i);
len--;
for (int j = i - 1; j >= 0; j--)
{
if (isalpha(st[j]) || isspace(st[j]))
{
delete (st, len, j);
len--;
break;
}
}
}
}
if (len == 0)
{
printf("-1\n");
continue;
}
for (int i = 0; i < len; i++)
{
printf("%c", st[i]);
}
printf("\n");
}
return 0;
}