Horje
two strings are anagram or not check python Code Example
two strings are anagram or not check python
// for 2 strings s1 and s2 to be anagrams
// both conditions should be True
// 1 their length is same or 
len(s1)==len(s2)
// 2 rearranging chars alphabetically make them equal or 
sorted(s1)==sorted(s2)




Python

Related
how to make a series in python alternating between + and - Code Example how to make a series in python alternating between + and - Code Example
https://raw.githubusercontent.com/tim-yao/lighthouse-ci/d32f465bb6cda08ded4ce25c88c43a3103e4940a/.browserslistrc Code Example https://raw.githubusercontent.com/tim-yao/lighthouse-ci/d32f465bb6cda08ded4ce25c88c43a3103e4940a/.browserslistrc Code Example
command line doesn't recognize "bastd" command Code Example command line doesn't recognize "bastd" command Code Example
idiomatic python Code Example idiomatic python Code Example
python async threading Code Example python async threading Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7