kamyu104/LeetCode-Solutions

Syntax Error: xrange in case of range

swad007 opened this issue · 1 comments

While looping through the for loop xrange is used for finding out the range from where to loop in case of range

The solutions of this repository are mainly written in Python2.
In Python 3, there is no xrange , but the range function behaves like xrange in Python2.
You can replace it yourself if you want to run in Python3.