Having constructed the following list:
NO_VACANCIES = ['no vacancies',
'not hiring',
'no open positions',
'all positions are currently filled'
'no positions are available'
"don't have any vacancies"
"we don't have any jobs available"
"we don't have any positions available"
'no positions are currently available']
... PyCharm suggested that I convert it to a set
, but gave no justification:
What might be the benefits of such a conversion?