Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
34
Lang/Python/00-LANG.txt
Normal file
34
Lang/Python/00-LANG.txt
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{{language
|
||||
|exec=interpreted
|
||||
|site=http://www.python.org
|
||||
|strength=strong
|
||||
|safety=safe
|
||||
|express=implicit
|
||||
|checking=dynamic
|
||||
|parampass=object reference
|
||||
|gc=yes
|
||||
|LCT=yes
|
||||
|bnf=http://docs.python.org/py3k/reference/grammar.html}}{{language programming paradigm|Dynamic}}{{language programming paradigm|Object-oriented}}{{codepad}}From the official [http://www.python.org Python] website: "Python is a programming language that lets you work more quickly and integrate your systems more effectively. You can learn to use Python and see almost immediate gains in productivity and lower maintenance costs."
|
||||
|
||||
It is easy to create clean bug-free programs in Python due to the motto: "Errors should never pass silently." Python is an [[wp:Interpreter (computing)|interpreter]]. Python source files (.py files) are typically compiled to an intermediate [[bytecode]] language (.pyc files) and executed by a Python Virtual Machine.
|
||||
|
||||
===Notes===
|
||||
Because Python uses whitespace for structure, do not format long code examples with leading whitespace, instead use <code><nowiki><pre></pre></nowiki></code> tags, or, preferably, <code><nowiki><lang python></lang></nowiki></code> tags. This will make it easier to copy code into and out of the wiki. Example:
|
||||
:<lang python>print('this line must not have leading indentation!')
|
||||
if True:
|
||||
print('example: ', foo(3), len(bar))</lang>
|
||||
|
||||
Some Python examples may deviate from idiomatic Python because they may be written to work in Python 3.X as well as Python 2.X environments. This includes doing things like:
|
||||
* Using brackets in print statements/functions of one expression.
|
||||
* Using zip and not izip; keys(), values(), items() and not their iter- forms.
|
||||
* Checking for raw_input and setting raw_input to input if not found.
|
||||
* Conditionally importing reduce if it is not found.
|
||||
This style is not a requirement for Python code on RC, but it may be in use and should not necessarily be 'corrected' if found in examples.
|
||||
|
||||
The command line is often used in Python for short pieces of code, and so, again; examples showing such use are not incorrect and may be left.
|
||||
|
||||
==See Also==
|
||||
* [[wp:python_(programming_language)|Wikipedia: Python]]
|
||||
|
||||
==Todo==
|
||||
[[Reports:Tasks_not_implemented_in_Python]]
|
||||
2
Lang/Python/00-META.yaml
Normal file
2
Lang/Python/00-META.yaml
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
---
|
||||
from: http://rosettacode.org/wiki/Category:Python
|
||||
1
Lang/Python/100-doors
Symbolic link
1
Lang/Python/100-doors
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/100-doors/Python
|
||||
1
Lang/Python/100-prisoners
Symbolic link
1
Lang/Python/100-prisoners
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/100-prisoners/Python
|
||||
1
Lang/Python/15-puzzle-game
Symbolic link
1
Lang/Python/15-puzzle-game
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/15-puzzle-game/Python
|
||||
1
Lang/Python/15-puzzle-solver
Symbolic link
1
Lang/Python/15-puzzle-solver
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/15-puzzle-solver/Python
|
||||
1
Lang/Python/2048
Symbolic link
1
Lang/Python/2048
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/2048/Python
|
||||
1
Lang/Python/21-game
Symbolic link
1
Lang/Python/21-game
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/21-game/Python
|
||||
1
Lang/Python/24-game
Symbolic link
1
Lang/Python/24-game
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/24-game/Python
|
||||
1
Lang/Python/24-game-Solve
Symbolic link
1
Lang/Python/24-game-Solve
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/24-game-Solve/Python
|
||||
1
Lang/Python/4-rings-or-4-squares-puzzle
Symbolic link
1
Lang/Python/4-rings-or-4-squares-puzzle
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/4-rings-or-4-squares-puzzle/Python
|
||||
1
Lang/Python/9-billion-names-of-God-the-integer
Symbolic link
1
Lang/Python/9-billion-names-of-God-the-integer
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/9-billion-names-of-God-the-integer/Python
|
||||
1
Lang/Python/99-bottles-of-beer
Symbolic link
1
Lang/Python/99-bottles-of-beer
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/99-bottles-of-beer/Python
|
||||
1
Lang/Python/A+B
Symbolic link
1
Lang/Python/A+B
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/A+B/Python
|
||||
1
Lang/Python/ABC-problem
Symbolic link
1
Lang/Python/ABC-problem
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/ABC-problem/Python
|
||||
1
Lang/Python/ADFGVX-cipher
Symbolic link
1
Lang/Python/ADFGVX-cipher
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/ADFGVX-cipher/Python
|
||||
1
Lang/Python/AKS-test-for-primes
Symbolic link
1
Lang/Python/AKS-test-for-primes
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/AKS-test-for-primes/Python
|
||||
1
Lang/Python/ASCII-art-diagram-converter
Symbolic link
1
Lang/Python/ASCII-art-diagram-converter
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/ASCII-art-diagram-converter/Python
|
||||
1
Lang/Python/AVL-tree
Symbolic link
1
Lang/Python/AVL-tree
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/AVL-tree/Python
|
||||
1
Lang/Python/Abbreviations-automatic
Symbolic link
1
Lang/Python/Abbreviations-automatic
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Abbreviations-automatic/Python
|
||||
1
Lang/Python/Abbreviations-easy
Symbolic link
1
Lang/Python/Abbreviations-easy
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Abbreviations-easy/Python
|
||||
1
Lang/Python/Abbreviations-simple
Symbolic link
1
Lang/Python/Abbreviations-simple
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Abbreviations-simple/Python
|
||||
1
Lang/Python/Abelian-sandpile-model
Symbolic link
1
Lang/Python/Abelian-sandpile-model
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Abelian-sandpile-model/Python
|
||||
1
Lang/Python/Abelian-sandpile-model-Identity
Symbolic link
1
Lang/Python/Abelian-sandpile-model-Identity
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Abelian-sandpile-model-Identity/Python
|
||||
1
Lang/Python/Abstract-type
Symbolic link
1
Lang/Python/Abstract-type
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Abstract-type/Python
|
||||
|
|
@ -0,0 +1 @@
|
|||
../../Task/Abundant-deficient-and-perfect-number-classifications/Python
|
||||
1
Lang/Python/Abundant-odd-numbers
Symbolic link
1
Lang/Python/Abundant-odd-numbers
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Abundant-odd-numbers/Python
|
||||
1
Lang/Python/Accumulator-factory
Symbolic link
1
Lang/Python/Accumulator-factory
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Accumulator-factory/Python
|
||||
1
Lang/Python/Achilles-numbers
Symbolic link
1
Lang/Python/Achilles-numbers
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Achilles-numbers/Python
|
||||
1
Lang/Python/Ackermann-function
Symbolic link
1
Lang/Python/Ackermann-function
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Ackermann-function/Python
|
||||
1
Lang/Python/Active-Directory-Connect
Symbolic link
1
Lang/Python/Active-Directory-Connect
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Active-Directory-Connect/Python
|
||||
1
Lang/Python/Active-Directory-Search-for-a-user
Symbolic link
1
Lang/Python/Active-Directory-Search-for-a-user
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Active-Directory-Search-for-a-user/Python
|
||||
1
Lang/Python/Active-object
Symbolic link
1
Lang/Python/Active-object
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Active-object/Python
|
||||
1
Lang/Python/Add-a-variable-to-a-class-instance-at-runtime
Symbolic link
1
Lang/Python/Add-a-variable-to-a-class-instance-at-runtime
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Add-a-variable-to-a-class-instance-at-runtime/Python
|
||||
1
Lang/Python/Additive-primes
Symbolic link
1
Lang/Python/Additive-primes
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Additive-primes/Python
|
||||
1
Lang/Python/Address-of-a-variable
Symbolic link
1
Lang/Python/Address-of-a-variable
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Address-of-a-variable/Python
|
||||
1
Lang/Python/Algebraic-data-types
Symbolic link
1
Lang/Python/Algebraic-data-types
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Algebraic-data-types/Python
|
||||
1
Lang/Python/Align-columns
Symbolic link
1
Lang/Python/Align-columns
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Align-columns/Python
|
||||
1
Lang/Python/Aliquot-sequence-classifications
Symbolic link
1
Lang/Python/Aliquot-sequence-classifications
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Aliquot-sequence-classifications/Python
|
||||
1
Lang/Python/Almkvist-Giullera-formula-for-pi
Symbolic link
1
Lang/Python/Almkvist-Giullera-formula-for-pi
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Almkvist-Giullera-formula-for-pi/Python
|
||||
1
Lang/Python/Almost-prime
Symbolic link
1
Lang/Python/Almost-prime
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Almost-prime/Python
|
||||
1
Lang/Python/Amb
Symbolic link
1
Lang/Python/Amb
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Amb/Python
|
||||
1
Lang/Python/Amicable-pairs
Symbolic link
1
Lang/Python/Amicable-pairs
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Amicable-pairs/Python
|
||||
1
Lang/Python/Anagrams
Symbolic link
1
Lang/Python/Anagrams
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Anagrams/Python
|
||||
1
Lang/Python/Anagrams-Deranged-anagrams
Symbolic link
1
Lang/Python/Anagrams-Deranged-anagrams
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Anagrams-Deranged-anagrams/Python
|
||||
1
Lang/Python/Angle-difference-between-two-bearings
Symbolic link
1
Lang/Python/Angle-difference-between-two-bearings
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Angle-difference-between-two-bearings/Python
|
||||
1
Lang/Python/Angles-geometric-normalization-and-conversion
Symbolic link
1
Lang/Python/Angles-geometric-normalization-and-conversion
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Angles-geometric-normalization-and-conversion/Python
|
||||
1
Lang/Python/Animate-a-pendulum
Symbolic link
1
Lang/Python/Animate-a-pendulum
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Animate-a-pendulum/Python
|
||||
1
Lang/Python/Animation
Symbolic link
1
Lang/Python/Animation
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Animation/Python
|
||||
1
Lang/Python/Anonymous-recursion
Symbolic link
1
Lang/Python/Anonymous-recursion
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Anonymous-recursion/Python
|
||||
1
Lang/Python/Anti-primes
Symbolic link
1
Lang/Python/Anti-primes
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Anti-primes/Python
|
||||
1
Lang/Python/Append-a-record-to-the-end-of-a-text-file
Symbolic link
1
Lang/Python/Append-a-record-to-the-end-of-a-text-file
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Append-a-record-to-the-end-of-a-text-file/Python
|
||||
1
Lang/Python/Apply-a-callback-to-an-array
Symbolic link
1
Lang/Python/Apply-a-callback-to-an-array
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Apply-a-callback-to-an-array/Python
|
||||
1
Lang/Python/Apply-a-digital-filter-direct-form-II-transposed-
Symbolic link
1
Lang/Python/Apply-a-digital-filter-direct-form-II-transposed-
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Apply-a-digital-filter-direct-form-II-transposed-/Python
|
||||
1
Lang/Python/Approximate-equality
Symbolic link
1
Lang/Python/Approximate-equality
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Approximate-equality/Python
|
||||
1
Lang/Python/Arbitrary-precision-integers-included-
Symbolic link
1
Lang/Python/Arbitrary-precision-integers-included-
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Arbitrary-precision-integers-included-/Python
|
||||
1
Lang/Python/Archimedean-spiral
Symbolic link
1
Lang/Python/Archimedean-spiral
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Archimedean-spiral/Python
|
||||
1
Lang/Python/Arithmetic-Complex
Symbolic link
1
Lang/Python/Arithmetic-Complex
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Arithmetic-Complex/Python
|
||||
1
Lang/Python/Arithmetic-Integer
Symbolic link
1
Lang/Python/Arithmetic-Integer
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Arithmetic-Integer/Python
|
||||
1
Lang/Python/Arithmetic-Rational
Symbolic link
1
Lang/Python/Arithmetic-Rational
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Arithmetic-Rational/Python
|
||||
1
Lang/Python/Arithmetic-derivative
Symbolic link
1
Lang/Python/Arithmetic-derivative
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Arithmetic-derivative/Python
|
||||
1
Lang/Python/Arithmetic-evaluation
Symbolic link
1
Lang/Python/Arithmetic-evaluation
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Arithmetic-evaluation/Python
|
||||
1
Lang/Python/Arithmetic-geometric-mean
Symbolic link
1
Lang/Python/Arithmetic-geometric-mean
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Arithmetic-geometric-mean/Python
|
||||
1
Lang/Python/Arithmetic-geometric-mean-Calculate-Pi
Symbolic link
1
Lang/Python/Arithmetic-geometric-mean-Calculate-Pi
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Arithmetic-geometric-mean-Calculate-Pi/Python
|
||||
1
Lang/Python/Arithmetic-numbers
Symbolic link
1
Lang/Python/Arithmetic-numbers
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Arithmetic-numbers/Python
|
||||
1
Lang/Python/Array-concatenation
Symbolic link
1
Lang/Python/Array-concatenation
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Array-concatenation/Python
|
||||
1
Lang/Python/Array-length
Symbolic link
1
Lang/Python/Array-length
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Array-length/Python
|
||||
1
Lang/Python/Arrays
Symbolic link
1
Lang/Python/Arrays
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Arrays/Python
|
||||
1
Lang/Python/Ascending-primes
Symbolic link
1
Lang/Python/Ascending-primes
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Ascending-primes/Python
|
||||
1
Lang/Python/Assertions
Symbolic link
1
Lang/Python/Assertions
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Assertions/Python
|
||||
1
Lang/Python/Associative-array-Creation
Symbolic link
1
Lang/Python/Associative-array-Creation
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Associative-array-Creation/Python
|
||||
1
Lang/Python/Associative-array-Iteration
Symbolic link
1
Lang/Python/Associative-array-Iteration
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Associative-array-Iteration/Python
|
||||
1
Lang/Python/Associative-array-Merging
Symbolic link
1
Lang/Python/Associative-array-Merging
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Associative-array-Merging/Python
|
||||
1
Lang/Python/Atomic-updates
Symbolic link
1
Lang/Python/Atomic-updates
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Atomic-updates/Python
|
||||
1
Lang/Python/Attractive-numbers
Symbolic link
1
Lang/Python/Attractive-numbers
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Attractive-numbers/Python
|
||||
1
Lang/Python/Average-loop-length
Symbolic link
1
Lang/Python/Average-loop-length
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Average-loop-length/Python
|
||||
1
Lang/Python/Averages-Arithmetic-mean
Symbolic link
1
Lang/Python/Averages-Arithmetic-mean
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Averages-Arithmetic-mean/Python
|
||||
1
Lang/Python/Averages-Mean-angle
Symbolic link
1
Lang/Python/Averages-Mean-angle
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Averages-Mean-angle/Python
|
||||
1
Lang/Python/Averages-Mean-time-of-day
Symbolic link
1
Lang/Python/Averages-Mean-time-of-day
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Averages-Mean-time-of-day/Python
|
||||
1
Lang/Python/Averages-Median
Symbolic link
1
Lang/Python/Averages-Median
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Averages-Median/Python
|
||||
1
Lang/Python/Averages-Mode
Symbolic link
1
Lang/Python/Averages-Mode
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Averages-Mode/Python
|
||||
1
Lang/Python/Averages-Pythagorean-means
Symbolic link
1
Lang/Python/Averages-Pythagorean-means
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Averages-Pythagorean-means/Python
|
||||
1
Lang/Python/Averages-Root-mean-square
Symbolic link
1
Lang/Python/Averages-Root-mean-square
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Averages-Root-mean-square/Python
|
||||
1
Lang/Python/Averages-Simple-moving-average
Symbolic link
1
Lang/Python/Averages-Simple-moving-average
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Averages-Simple-moving-average/Python
|
||||
1
Lang/Python/B-zier-curves-Intersections
Symbolic link
1
Lang/Python/B-zier-curves-Intersections
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/B-zier-curves-Intersections/Python
|
||||
1
Lang/Python/Babbage-problem
Symbolic link
1
Lang/Python/Babbage-problem
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Babbage-problem/Python
|
||||
1
Lang/Python/Babylonian-spiral
Symbolic link
1
Lang/Python/Babylonian-spiral
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Babylonian-spiral/Python
|
||||
1
Lang/Python/Balanced-brackets
Symbolic link
1
Lang/Python/Balanced-brackets
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Balanced-brackets/Python
|
||||
1
Lang/Python/Balanced-ternary
Symbolic link
1
Lang/Python/Balanced-ternary
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Balanced-ternary/Python
|
||||
1
Lang/Python/Barnsley-fern
Symbolic link
1
Lang/Python/Barnsley-fern
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Barnsley-fern/Python
|
||||
1
Lang/Python/Base64-decode-data
Symbolic link
1
Lang/Python/Base64-decode-data
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Base64-decode-data/Python
|
||||
1
Lang/Python/Bell-numbers
Symbolic link
1
Lang/Python/Bell-numbers
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Bell-numbers/Python
|
||||
1
Lang/Python/Benfords-law
Symbolic link
1
Lang/Python/Benfords-law
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Benfords-law/Python
|
||||
1
Lang/Python/Bernoulli-numbers
Symbolic link
1
Lang/Python/Bernoulli-numbers
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Bernoulli-numbers/Python
|
||||
1
Lang/Python/Best-shuffle
Symbolic link
1
Lang/Python/Best-shuffle
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Best-shuffle/Python
|
||||
1
Lang/Python/Bifid-cipher
Symbolic link
1
Lang/Python/Bifid-cipher
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Bifid-cipher/Python
|
||||
1
Lang/Python/Bin-given-limits
Symbolic link
1
Lang/Python/Bin-given-limits
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Bin-given-limits/Python
|
||||
1
Lang/Python/Binary-digits
Symbolic link
1
Lang/Python/Binary-digits
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Binary-digits/Python
|
||||
1
Lang/Python/Binary-search
Symbolic link
1
Lang/Python/Binary-search
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Binary-search/Python
|
||||
1
Lang/Python/Binary-strings
Symbolic link
1
Lang/Python/Binary-strings
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Binary-strings/Python
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue