Possessing a Bachelor's degree in Computer Science and Engineering from Galgotias University.I am Motivated to learn new stuff,love to working on new ideas.I have significant knowledge of Python Machine leaning and Web Development.
// Which come first: the chicken or the egg?
console.log(['π₯', 'π£', 'π₯', 'π'].sort())
>>> [ 'π', 'π£', 'π₯', 'π₯' ]
# Which come frist: this chicken or the egg?
que = ['π₯', 'π£', 'π₯', 'π']
que.sort()
print(que)
['π', 'π£', 'π₯', 'π₯']