File tree 1 file changed +6
-7
lines changed
1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change 5
5
"colab" : {
6
6
"provenance" : [],
7
7
"toc_visible" : true ,
8
- "authorship_tag" : " ABX9TyPXPJZhhSIKrUVi0X01i8ho " ,
8
+ "authorship_tag" : " ABX9TyPrcjUxUuuLvQS9ck0FLoFm " ,
9
9
"include_colab_link" : true
10
10
},
11
11
"kernelspec" : {
30
30
{
31
31
"cell_type" : " code" ,
32
32
"source" : [
33
- " #1.1 IsUnique\n " ,
34
- " \n " ,
33
+ " # 1.1 IsUnique\n " ,
35
34
" def containsDuplicate(nums):\n " ,
36
35
" if(len(nums) == len(set(nums))):\n " ,
37
36
" return False\n " ,
48
47
{
49
48
"cell_type" : " code" ,
50
49
"source" : [
51
- " #1.2 Check Permutation\n " ,
52
- " #Decide if two strings are anagrams of one another\n " ,
50
+ " # 1.2 Check Permutation\n " ,
51
+ " # Decide if two strings are anagrams of one another\n " ,
53
52
" \n " ,
54
53
" def anagram(first, second):\n " ,
55
54
" return sorted(first) == sorted(second)\n " ,
87
86
}
88
87
],
89
88
"source" : [
90
- " #1.3 URLify\n " ,
89
+ " # 1.3 URLify\n " ,
91
90
" def replace(str):\n " ,
92
91
" new = str.strip()\n " ,
93
92
" #print(new)\n " ,
108
107
{
109
108
"cell_type" : " code" ,
110
109
"source" : [
111
- " #1.6 String Compression\n " ,
110
+ " # 1.6 String Compression\n " ,
112
111
" def compression(string):\n " ,
113
112
" list = []\n " ,
114
113
" count = 1\n " ,
You can’t perform that action at this time.
0 commit comments