Skip to content

Commit 87f521e

Browse files
authored
modify Readme
1 parent 9b606d9 commit 87f521e

1 file changed

Lines changed: 18 additions & 18 deletions

File tree

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,85 +1,85 @@
11
# Codility-Python
22

33
My Solutions to [Codility Lessons](https://app.codility.com/programmers/lessons/1-iterations/)
4-
are listed as follows (100% performance with comments) :
4+
are listed as follows (100% performance with comments) (using Python):
55

6-
Lesson 1 Iterations
6+
Lesson 1 Iterations [PDF](https://github.com/Mickey0521/Codility-Python/blob/master/1-Iterations_cckao.pdf)
77
- [BinaryGap](https://github.com/Mickey0521/Codility-Python/blob/master/BinaryGap.py)
88

9-
Lesson 2 Arrays
9+
Lesson 2 Arrays [PDF](https://github.com/Mickey0521/Codility-Python/blob/master/2-Arrays_cckao.pdf)
1010
- [OddOccurrencesInArray](https://github.com/Mickey0521/Codility-Python/blob/master/OddOccurrencesInArray.py)
1111
- [CyclicRotation](https://github.com/Mickey0521/Codility-Python/blob/master/CyclicRotation.py)
1212

13-
Lesson 3 Time Complexity
13+
Lesson 3 Time Complexity [PDF](https://github.com/Mickey0521/Codility-Python/blob/master/3-TimeComplexity_cckao.pdf)
1414
- [FrogJmp](https://github.com/Mickey0521/Codility-Python/blob/master/FrogJmp.py)
1515
- [PermMissingElem](https://github.com/Mickey0521/Codility-Python/blob/master/PermMissingElem.py)
1616
- [TapeEquilibrium](https://github.com/Mickey0521/Codility-Python/blob/master/TapeEquilibrium.py)
1717

18-
Lesson 4 Counting Elements
18+
Lesson 4 Counting Elements [PDF](https://github.com/Mickey0521/Codility-Python/blob/master/4-CountingElements_cckao.pdf)
1919
- [PermCheck](https://github.com/Mickey0521/Codility-Python/blob/master/PermCheck.py)
2020
- [FrogRiverOne](https://github.com/Mickey0521/Codility-Python/blob/master/FrogRiverOne.py)
2121
- [MissingInteger](https://github.com/Mickey0521/Codility-Python/blob/master/MissingInteger.py)
2222
- [MaxCounters](https://github.com/Mickey0521/Codility-Python/blob/master/MaxCounters_v3.py)
2323

24-
Lesson 5 Prefix Sums
24+
Lesson 5 Prefix Sums [PDF](https://github.com/Mickey0521/Codility-Python/blob/master/5-PrefixSums_cckao.pdf)
2525
- [CountDiv](https://github.com/Mickey0521/Codility-Python/blob/master/CountDiv_v2.py)
2626
- [PassingCars](https://github.com/Mickey0521/Codility-Python/blob/master/PassingCars.py)
2727
- [GenomicRangeQuery](https://github.com/Mickey0521/Codility-Python/blob/master/GenomicRangeQuery_v2.py) (respectable)
2828
- [MinAvgTwoSlice](https://github.com/Mickey0521/Codility-Python/blob/master/MinAvgTwoSlice_v2.py) (respectable)
2929

30-
Lesson 6 Sorting
30+
Lesson 6 Sorting [PDF](https://github.com/Mickey0521/Codility-Python/blob/master/6-Sorting_cckao.pdf)
3131
- [Distinct](https://github.com/Mickey0521/Codility-Python/blob/master/Distinct.py)
3232
- [Triangle](https://github.com/Mickey0521/Codility-Python/blob/master/Triangle.py)
3333
- [MaxProductOfThree](https://github.com/Mickey0521/Codility-Python/blob/master/MaxProductOfThree.py)
3434
- [NumberOfDiscIntersections](https://github.com/Mickey0521/Codility-Python/blob/master/NumberOfDiscIntersections_v2.py) (respectable)
3535

36-
Lesson 7 Stacks and Queues
36+
Lesson 7 Stacks and Queues [PDF](https://github.com/Mickey0521/Codility-Python/blob/master/7-Stacks_cckao.pdf)
3737
- [StoneWall](https://github.com/Mickey0521/Codility-Python/blob/master/StoneWall.py)
3838
- [Brackets](https://github.com/Mickey0521/Codility-Python/blob/master/Brackets_v2.py)
3939
- [Nesting](https://github.com/Mickey0521/Codility-Python/blob/master/Nesting.py)
4040
- [Fish](https://github.com/Mickey0521/Codility-Python/blob/master/Fish.py)
4141

42-
Lesson 8 Leader
42+
Lesson 8 Leader [PDF](https://github.com/Mickey0521/Codility-Python/blob/master/8-Leader_cckao.pdf)
4343
- [EquiLeader](https://github.com/Mickey0521/Codility-Python/blob/master/EquiLeader.py)
4444
- [Dominator](https://github.com/Mickey0521/Codility-Python/blob/master/Dominator.py)
4545

46-
Lesson 9 Maximum slice problem
46+
Lesson 9 Maximum slice problem [PDF](https://github.com/Mickey0521/Codility-Python/blob/master/9-MaxSlice_cckao.pdf)
4747
- [MaxDoubleSliceSum](https://github.com/Mickey0521/Codility-Python/blob/master/MaxDoubleSliceSum.py)
4848
- [MaxProfit](https://github.com/Mickey0521/Codility-Python/blob/master/MaxProfit.py)
4949
- [MaxSliceSum](https://github.com/Mickey0521/Codility-Python/blob/master/MaxSliceSum.py)
5050

51-
Lesson 10 Prime and composite numbers
51+
Lesson 10 Prime and composite numbers [PDF](https://github.com/Mickey0521/Codility-Python/blob/master/10-PrimeNumbers_cckao.pdf)
5252
- [MinPerimeterRectangle](https://github.com/Mickey0521/Codility-Python/blob/master/MinPerimeterRectangle.py)
5353
- [CountFactors](https://github.com/Mickey0521/Codility-Python/blob/master/CountFactors.py)
5454
- [Peaks](https://github.com/Mickey0521/Codility-Python/blob/master/Peaks.py) (respectable)
5555
- Flags (respectable)
5656

57-
Lesson 11 Sieve of Eratosthenes (coming soon ...)
57+
Lesson 11 Sieve of Eratosthenes (Coming Soon ...)
5858
- CountSemiprimes
5959
- CountNonDivisible (respectable)
6060

61-
Lesson 12 Euclidean algorithm (coming soon ...)
61+
Lesson 12 Euclidean algorithm (Coming Soon ...)
6262
- ChocolatesByNumbers
6363
- CommonPrimeDivisors (respectable)
6464

65-
Lesson 13 Fibonacci numbers (coming soon ...)
65+
Lesson 13 Fibonacci numbers (Coming Soon ...)
6666
- Ladder (respectable)
6767
- FibFrog (respectable)
6868

69-
Lesson 14 Binary search algorithm (coming soon ...)
69+
Lesson 14 Binary search algorithm (Coming Soon ...)
7070
- MinMaxDivision (respectable)
7171
- NailingPlanks (respectable)
7272

73-
Lesson 15 Caterpillar method (coming soon ...)
73+
Lesson 15 Caterpillar method (Coming Soon ...)
7474
- AbsDistinct
7575
- CountDistinctSlices
7676
- CountTriangles
7777
- MinAbsSumOfTwo (respectable)
7878

79-
Lesson 16 Greedy algorithms (coming soon ...)
79+
Lesson 16 Greedy algorithms (Coming Soon ...)
8080
- MaxNonoverlappingSegments
8181
- TieRopes
8282

83-
Lesson 17 Dynamic programming (coming soon ...)
83+
Lesson 17 Dynamic programming (Coming Soon ...)
8484
- NumberSolitaire (respectable)
8585
- MinAbsSum (ambitious)

0 commit comments

Comments
 (0)