()
| 16 | |
| 17 | # Taking Input Using Fast I/O |
| 18 | def takeInput(): |
| 19 | print("Enter elements of list .") |
| 20 | n = int(sys.stdin.readline().rstrip()) |
| 21 | if n == 0: |
| 22 | return list(), 0 |
| 23 | arr = list(map(int, sys.stdin.readline().rstrip().split(" "))) |
| 24 | return arr, n |
| 25 | |
| 26 | # main |
| 27 | print("How many list do you want to check? ") |
no test coverage detected