New test case type
Test Case format (or example test case)
for ex -
T
5
H 10
I 1 5
D 1
H 6
I 2 7
(In the format of CP websites or the ones shown in the generator application)
1st line - Number of operations (M)
2nd line - Number of nodes (N) in the linked list
3rd line - Operations (H x, I k x, D k)
4th line - Final state of the list
Reference link to the question(URL):-
(It'll help us in analyzing the Test case better)
Additional details/comments:-
- 'H' indicates insert at head
- 'I k x' means inserting x after the kth inserted node
- 'D k' means delete the node after the kth inserted node
New test case type
Test Case format (or example test case)
for ex -
(In the format of CP websites or the ones shown in the generator application)1st line - Number of operations (M)
2nd line - Number of nodes (N) in the linked list
3rd line - Operations (H x, I k x, D k)
4th line - Final state of the list
Reference link to the question(URL):-
(It'll help us in analyzing the Test case better)Additional details/comments:-