monu_dixit's blog

By monu_dixit, history, 23 months ago, In English

Hello coders..

  1. Use sys module in your code for taking input. input = sys.stdin.readline
  2. Don't convert input array into list while taking input like this ->> "(a = list(map(int,input().split(' '))))" , use "(input().split())" and for iterating this input use enumerators.
  • Vote: I like it
  • -12
  • Vote: I do not like it

| Write comment?