⛷️
If you're not falling, you're not learning
Pinned Loading
-
Given two strings, are they permutat...
Given two strings, are they permutation of each other 1def is_permutation(input_string_1, input_string_2):
2if len(input_string_1) != len(input_string_2):
3return False
4#assume ascii character set
5char_count = [0]*256
-
Merge sort in python 3
Merge sort in python 3 1def merge_sort(input_array):
2array_size = len(input_array)
3if array_size < 2 :
4return
5# divide
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.