Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ var/
*.egg-info/
.installed.cfg
*.egg
bin/

# PyInstaller
# Usually these files are written by a python script from a template
Expand Down
28 changes: 19 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Repo containing my solutions from Code War katas.
Repo containing my solutions from Code Katas.

###8kyu

Expand All @@ -16,7 +16,7 @@ multiply = __import__('operator').mul
###7kyu


###Decending Order:
####Decending Order:
- MODULE: decending_order.py
- TESTS: test_decending_order.py
- LINKS:
Expand All @@ -29,7 +29,7 @@ def Descending_Order(num):
```


###Remove the Minimum:
####Remove the Minimum:
- MODULE: remove_min.py
- TESTS: test_remove.min.py
- LINKS:
Expand All @@ -44,7 +44,7 @@ def remove_smallest(numbers):
```


###Money, Money, Money:
####Money, Money, Money:
- MODULE: calculate_years.py
- TESTS: test_calculate_years.py
- LINKS:
Expand All @@ -61,7 +61,7 @@ def calculate_years(principal, interest, tax, desired):
```


###Isograms:
####Isograms:
- MODULE: is_isogram.py
- TESTS: test_is_isogram.py
- LINKS:
Expand All @@ -74,7 +74,7 @@ def is_isogram(string):
```


###Exes and Ohs:
####Exes and Ohs:
- MODULE: xo.py
- TESTS: test_xo.py
- LINKS:
Expand All @@ -88,7 +88,7 @@ def xo(s):
```


###Shortest Word:
####Shortest Word:
- MODULE: shortest_word.py
- TESTS: test_shortest_word.py
- LINKS:
Expand All @@ -104,7 +104,7 @@ def find_short(s):
###6kyu


###Find the Odd Int:
####Find the Odd Int:
- MODULE: find_odd_int.py
- TESTS: test_find_odd_int.py
- LINKS:
Expand All @@ -119,7 +119,7 @@ def find_it(xs):
```


###Bit Counting:
####Bit Counting:
- MODULE: count_bits.py
- TESTS: test_count_bits.py
- LINKS: [Bit Counting - Kata](https://www.codewars.com/kata/bit-counting/train/python),
Expand All @@ -129,3 +129,13 @@ def find_it(xs):
def countBits(n):
return bin(n).count("1")
```


###Other


####Interview Challenge: Proper Parenthetics
- Module: proper-parenthetics.py
- TESTS: test_proper-parenthetics.py
- LINKS: None.
- DERIVED FROM: [data-structures repo. Specifically stack branch](https://github.com/ellezv/data_structures/tree/stack), collaborated with Maelle Vance.
76 changes: 0 additions & 76 deletions bin/activate

This file was deleted.

37 changes: 0 additions & 37 deletions bin/activate.csh

This file was deleted.

74 changes: 0 additions & 74 deletions bin/activate.fish

This file was deleted.

11 changes: 0 additions & 11 deletions bin/easy_install

This file was deleted.

11 changes: 0 additions & 11 deletions bin/easy_install-3.5

This file was deleted.

11 changes: 0 additions & 11 deletions bin/pip

This file was deleted.

11 changes: 0 additions & 11 deletions bin/pip3

This file was deleted.

11 changes: 0 additions & 11 deletions bin/pip3.5

This file was deleted.

12 changes: 0 additions & 12 deletions bin/ptw

This file was deleted.

11 changes: 0 additions & 11 deletions bin/py.test

This file was deleted.

11 changes: 0 additions & 11 deletions bin/pytest

This file was deleted.

12 changes: 0 additions & 12 deletions bin/pytest-watch

This file was deleted.

Loading