import org.junit.*;
import org.junit.runner.*;
import java.io.*;
import java.util.*;
public class Solution
{
@Test
public void test1()
{
/*
*/
}
@Ignore
@Test
public void test3()
{
/*
*/
}
public static void main(String[] args)
{
JUnitCore.main("Solution");
}
}
import unittest
# import collections
from collections import deque
from collections import defaultdict
#from sortedcontainers import SortedList, SortedSet, SortedDict
import heapq
import re
class OnlineHackerRankCodePair(unittest.TestCase):
@unittest.skip
def test_Test1(self):
self.assertEqual("a", "a")
def test_Test2(self):
self.assertFalse(False)
if __name__ == '__main__':
unittest.main()