Skip to content

Commit dcee43f

Browse files
committed
Task 0005 : Check for Permutations
1 parent 53c770b commit dcee43f

1 file changed

Lines changed: 39 additions & 0 deletions

File tree

Tasks/0005.ipynb

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"metadata": {},
6+
"source": [
7+
"# Practice Code: 0005\n",
8+
"\n",
9+
"### Permutation:\n",
10+
"Permutation is the act of arranging the members of a set into a sequence or order, or, if the set is already ordered, rearranging its elements—a process called permuting. Permutations differ from combinations, which are selections of some members of a set regardless of order.\n",
11+
"\n",
12+
"**Write a function, which determines whether one line is a permutation of another. Write an algorithm that optimally finishes the task.**\n",
13+
"\n",
14+
"#python #practiceCode #samples #interviewQuestions #collections #list #algorithm"
15+
]
16+
}
17+
],
18+
"metadata": {
19+
"kernelspec": {
20+
"display_name": "Python 3",
21+
"language": "python",
22+
"name": "python3"
23+
},
24+
"language_info": {
25+
"codemirror_mode": {
26+
"name": "ipython",
27+
"version": 3
28+
},
29+
"file_extension": ".py",
30+
"mimetype": "text/x-python",
31+
"name": "python",
32+
"nbconvert_exporter": "python",
33+
"pygments_lexer": "ipython3",
34+
"version": "3.7.0"
35+
}
36+
},
37+
"nbformat": 4,
38+
"nbformat_minor": 2
39+
}

0 commit comments

Comments
 (0)