├── README.md ├── algorithms ├── ai │ ├── Astar.py │ ├── hamming.py │ └── knn.py ├── bioinformatics │ ├── gc_skew_diagram.py │ ├── reverse_complement.py │ ├── traducao.py │ └── transcricao.py ├── color │ └── rgb-to-cmyk.py ├── combinatory │ └── derangement.py ├── crypto │ ├── cesar.py │ ├── rot13.py │ ├── rsa.py │ └── vigenere.py ├── data-structures │ ├── arraysum.py │ ├── heap.py │ └── stack.py ├── date │ └── leap-year.py ├── economics │ └── financiamento.py ├── geography │ └── haversine.py ├── graphs │ ├── BellmanFord.py │ ├── Dijkstra.py │ ├── EdmondsKarp.py │ └── FloydWarshall.py ├── math │ ├── algebra │ │ ├── bhaskara.py │ │ ├── dda.py │ │ ├── media-num.py │ │ ├── media.py │ │ └── permutation.py │ ├── bisection-method.py │ ├── linear-algebra │ │ └── matrix-transpose.py │ ├── luhn.py │ └── number-theory │ │ ├── bozofactoring.py │ │ ├── divisors.py │ │ ├── eratosthenes.py │ │ ├── euclid.py │ │ ├── fatorial.py │ │ ├── fibonacci-matrix-form.py │ │ ├── fibonacci.py │ │ ├── miller-rabin.py │ │ ├── newton_raphson_sqrt.py │ │ ├── perfectnumber.py │ │ ├── pow.py │ │ ├── powmod.py │ │ └── stirling.py ├── misc │ └── helloworld.py ├── optimization │ ├── inteval_scheduling.py │ └── knapsack.py ├── pattern-matching │ ├── AhoCorasick.py │ ├── hamming.py │ ├── kmp.py │ └── levenshtein.py ├── physics │ └── ballistic.py ├── search │ ├── binary-search.py │ └── linear-search.py ├── sequence │ └── token.py └── sorting │ ├── bozosort.py │ ├── bubblesort.py │ ├── dropsort.py │ ├── insertionsort.py │ ├── masochisticsort.py │ ├── mergesort.py │ ├── quicksort.py │ ├── selectionsort.py │ └── sleepsort.py ├── modelo.txt └── other-languages ├── ai ├── genealogicaltree │ └── genealogicaltree.pro ├── sokoban │ ├── alberta │ │ ├── screen.1 │ │ ├── screen.1.sol │ │ └── screen.31 │ ├── runtests.sh │ ├── sokoban.cpp │ └── sokobanonline │ │ └── classic │ │ └── thinkingrabbit │ │ └── Boxxle │ │ ├── sk01-01.in │ │ ├── sk01-01.out │ │ ├── sk01-01.sol │ │ ├── sk01-02.in │ │ ├── sk01-02.out │ │ ├── sk01-02.sol │ │ ├── sk01-03.in │ │ ├── sk01-03.out │ │ ├── sk01-03.sol │ │ ├── sk01-04.in │ │ ├── sk01-04.out │ │ ├── sk01-04.sol │ │ ├── sk01-05.in │ │ ├── sk01-05.out │ │ ├── sk01-05.sol │ │ ├── sk01-06.in │ │ ├── sk01-06.out │ │ ├── sk01-06.sol │ │ ├── sk01-07.in │ │ ├── sk01-07.sol │ │ ├── sk01-08.in │ │ ├── sk01-08.sol │ │ ├── sk01-09.in │ │ ├── sk01-09.sol │ │ ├── sk02-10.in │ │ └── sk02-10.sol └── sudoku │ ├── sudoku.cpp │ └── test_001.in ├── array ├── merge │ └── merge.rb └── partition │ └── partition.rb ├── bitwise ├── BitScanForwardDebruijn64.cs ├── HammingWeight64.cs ├── bsf-debruijn │ └── BitScanForwardDebruijn64.cs ├── dec2hex │ └── dec2hex.c ├── hamming-weight │ └── HammingWeight64.cs ├── operations │ └── operations.cpp └── swap_xor │ ├── swap_xor.c │ ├── swap_xor.cs │ └── swap_xor.php ├── date └── leap-year │ ├── leap-year.lisp │ ├── leap-year.php │ └── leap-year.rb ├── economics ├── financiamento │ ├── financiamento.cs │ ├── financiamento.lisp │ ├── financiamento.php │ └── financiamento.rb └── juros-compostos │ └── juros-compostos.lisp ├── geography └── haversine │ └── haversine.rb ├── graphs ├── dijkstra │ ├── dijkstra.cpp │ └── dijkstra.java ├── floyd-warshall │ └── floyd-warshall.cpp └── prim │ └── prim.java ├── lang └── nums2words.c ├── math ├── bhaskara │ ├── bhaskara.lisp │ ├── bhaskara.php │ └── bhaskara.rb ├── dda │ ├── dda.cpp │ ├── dda.cs │ ├── dda.java │ ├── dda.php │ └── dda.rb ├── determinant │ ├── determinant.cpp │ └── determinant.rb ├── divisors │ └── divisor.rb ├── eratostenes │ └── eratostenes.java ├── even │ └── even.c ├── fatorial │ ├── fatorial.cs │ ├── fatorial.lisp │ ├── fatorial.php │ └── fatorial.rb ├── fibonacci │ ├── fibonacci.c │ ├── fibonacci.clj │ ├── fibonacci.cs │ ├── fibonacci.java │ ├── fibonacci.lisp │ ├── fibonacci.lua │ ├── fibonacci.php │ └── fibonacci.rb ├── gauss │ └── sumgauss.cpp ├── geometric-mean │ └── geometric-mean.cpp ├── linear-system │ └── linear-system.c ├── lu-decomposition │ ├── lu-decomposition.cpp │ └── lu-decomposition.rb ├── matrix-transpose │ └── matrix-transpose.cpp ├── media-num │ ├── media-num.c │ └── media-num.rb ├── media │ ├── media.lisp │ ├── media.php │ └── media.rb ├── multiply-matrix │ └── multiply-matrix.cpp ├── n-root │ └── MetodosNumericos.java ├── perfect-numbers │ └── perfectnumber.rb ├── pow │ └── pow.c └── stirlings-approximation │ └── stirling.clj ├── number-theory ├── euclid │ ├── euclid.lisp │ └── euclid.rb ├── inverse │ └── inverse.c ├── modular-exponentiation │ └── modular-exponentiation.cpp ├── odd-even │ └── odd-even.c ├── odd │ └── odd.c └── sieve │ ├── sieve.cpp │ └── sieve.lisp ├── pattern-matching └── lcs │ └── lcs.rb ├── physics └── ballistic │ └── ballistic.lisp ├── puzzle ├── hanoi │ └── hanoi.cpp └── sudoku-validation │ └── sudoku-validation.cpp ├── search ├── binary-search │ └── BuscaBinaria.java ├── linear-search │ └── linear-search.rb └── simul-smaller-higher │ └── simul-smaller-higher.cpp ├── sequence └── token │ ├── token.php │ └── token.rb └── sorting ├── bozosort ├── bozosort.lisp ├── bozosort.php └── bozosort.rb ├── bubblesort ├── bubblesort.lisp └── bubblesort.php ├── fisher-yates └── fisher-yates.c ├── heapsort └── heapsort.c ├── insertionsort ├── insertionsort.cpp ├── insertionsort.php ├── insertionsort.pyc └── insertionsort.rb ├── mergesort ├── mergesort.c └── mergesort.rb ├── quicksort ├── quicksort.c ├── quicksort.php └── quicksort.rb ├── selectionsort ├── selectionsort.cpp └── selectionsort.php ├── shellsort └── shellsort.cpp └── stoogesort └── stoogesort.cpp /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/README.md -------------------------------------------------------------------------------- /algorithms/ai/Astar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/ai/Astar.py -------------------------------------------------------------------------------- /algorithms/ai/hamming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/ai/hamming.py -------------------------------------------------------------------------------- /algorithms/ai/knn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/ai/knn.py -------------------------------------------------------------------------------- /algorithms/bioinformatics/gc_skew_diagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/bioinformatics/gc_skew_diagram.py -------------------------------------------------------------------------------- /algorithms/bioinformatics/reverse_complement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/bioinformatics/reverse_complement.py -------------------------------------------------------------------------------- /algorithms/bioinformatics/traducao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/bioinformatics/traducao.py -------------------------------------------------------------------------------- /algorithms/bioinformatics/transcricao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/bioinformatics/transcricao.py -------------------------------------------------------------------------------- /algorithms/color/rgb-to-cmyk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/color/rgb-to-cmyk.py -------------------------------------------------------------------------------- /algorithms/combinatory/derangement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/combinatory/derangement.py -------------------------------------------------------------------------------- /algorithms/crypto/cesar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/crypto/cesar.py -------------------------------------------------------------------------------- /algorithms/crypto/rot13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/crypto/rot13.py -------------------------------------------------------------------------------- /algorithms/crypto/rsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/crypto/rsa.py -------------------------------------------------------------------------------- /algorithms/crypto/vigenere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/crypto/vigenere.py -------------------------------------------------------------------------------- /algorithms/data-structures/arraysum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/data-structures/arraysum.py -------------------------------------------------------------------------------- /algorithms/data-structures/heap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/data-structures/heap.py -------------------------------------------------------------------------------- /algorithms/data-structures/stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/data-structures/stack.py -------------------------------------------------------------------------------- /algorithms/date/leap-year.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/date/leap-year.py -------------------------------------------------------------------------------- /algorithms/economics/financiamento.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/economics/financiamento.py -------------------------------------------------------------------------------- /algorithms/geography/haversine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/geography/haversine.py -------------------------------------------------------------------------------- /algorithms/graphs/BellmanFord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/graphs/BellmanFord.py -------------------------------------------------------------------------------- /algorithms/graphs/Dijkstra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/graphs/Dijkstra.py -------------------------------------------------------------------------------- /algorithms/graphs/EdmondsKarp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/graphs/EdmondsKarp.py -------------------------------------------------------------------------------- /algorithms/graphs/FloydWarshall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/graphs/FloydWarshall.py -------------------------------------------------------------------------------- /algorithms/math/algebra/bhaskara.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/math/algebra/bhaskara.py -------------------------------------------------------------------------------- /algorithms/math/algebra/dda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/math/algebra/dda.py -------------------------------------------------------------------------------- /algorithms/math/algebra/media-num.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/math/algebra/media-num.py -------------------------------------------------------------------------------- /algorithms/math/algebra/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/math/algebra/media.py -------------------------------------------------------------------------------- /algorithms/math/algebra/permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/math/algebra/permutation.py -------------------------------------------------------------------------------- /algorithms/math/bisection-method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/math/bisection-method.py -------------------------------------------------------------------------------- /algorithms/math/linear-algebra/matrix-transpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/math/linear-algebra/matrix-transpose.py -------------------------------------------------------------------------------- /algorithms/math/luhn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/math/luhn.py -------------------------------------------------------------------------------- /algorithms/math/number-theory/bozofactoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/math/number-theory/bozofactoring.py -------------------------------------------------------------------------------- /algorithms/math/number-theory/divisors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/math/number-theory/divisors.py -------------------------------------------------------------------------------- /algorithms/math/number-theory/eratosthenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/math/number-theory/eratosthenes.py -------------------------------------------------------------------------------- /algorithms/math/number-theory/euclid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/math/number-theory/euclid.py -------------------------------------------------------------------------------- /algorithms/math/number-theory/fatorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/math/number-theory/fatorial.py -------------------------------------------------------------------------------- /algorithms/math/number-theory/fibonacci-matrix-form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/math/number-theory/fibonacci-matrix-form.py -------------------------------------------------------------------------------- /algorithms/math/number-theory/fibonacci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/math/number-theory/fibonacci.py -------------------------------------------------------------------------------- /algorithms/math/number-theory/miller-rabin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/math/number-theory/miller-rabin.py -------------------------------------------------------------------------------- /algorithms/math/number-theory/newton_raphson_sqrt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/math/number-theory/newton_raphson_sqrt.py -------------------------------------------------------------------------------- /algorithms/math/number-theory/perfectnumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/math/number-theory/perfectnumber.py -------------------------------------------------------------------------------- /algorithms/math/number-theory/pow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/math/number-theory/pow.py -------------------------------------------------------------------------------- /algorithms/math/number-theory/powmod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/math/number-theory/powmod.py -------------------------------------------------------------------------------- /algorithms/math/number-theory/stirling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/math/number-theory/stirling.py -------------------------------------------------------------------------------- /algorithms/misc/helloworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/misc/helloworld.py -------------------------------------------------------------------------------- /algorithms/optimization/inteval_scheduling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/optimization/inteval_scheduling.py -------------------------------------------------------------------------------- /algorithms/optimization/knapsack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/optimization/knapsack.py -------------------------------------------------------------------------------- /algorithms/pattern-matching/AhoCorasick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/pattern-matching/AhoCorasick.py -------------------------------------------------------------------------------- /algorithms/pattern-matching/hamming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/pattern-matching/hamming.py -------------------------------------------------------------------------------- /algorithms/pattern-matching/kmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/pattern-matching/kmp.py -------------------------------------------------------------------------------- /algorithms/pattern-matching/levenshtein.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/pattern-matching/levenshtein.py -------------------------------------------------------------------------------- /algorithms/physics/ballistic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/physics/ballistic.py -------------------------------------------------------------------------------- /algorithms/search/binary-search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/search/binary-search.py -------------------------------------------------------------------------------- /algorithms/search/linear-search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/search/linear-search.py -------------------------------------------------------------------------------- /algorithms/sequence/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/sequence/token.py -------------------------------------------------------------------------------- /algorithms/sorting/bozosort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/sorting/bozosort.py -------------------------------------------------------------------------------- /algorithms/sorting/bubblesort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/sorting/bubblesort.py -------------------------------------------------------------------------------- /algorithms/sorting/dropsort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/sorting/dropsort.py -------------------------------------------------------------------------------- /algorithms/sorting/insertionsort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/sorting/insertionsort.py -------------------------------------------------------------------------------- /algorithms/sorting/masochisticsort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/sorting/masochisticsort.py -------------------------------------------------------------------------------- /algorithms/sorting/mergesort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/sorting/mergesort.py -------------------------------------------------------------------------------- /algorithms/sorting/quicksort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/sorting/quicksort.py -------------------------------------------------------------------------------- /algorithms/sorting/selectionsort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/sorting/selectionsort.py -------------------------------------------------------------------------------- /algorithms/sorting/sleepsort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/algorithms/sorting/sleepsort.py -------------------------------------------------------------------------------- /modelo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/modelo.txt -------------------------------------------------------------------------------- /other-languages/ai/genealogicaltree/genealogicaltree.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/genealogicaltree/genealogicaltree.pro -------------------------------------------------------------------------------- /other-languages/ai/sokoban/alberta/screen.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sokoban/alberta/screen.1 -------------------------------------------------------------------------------- /other-languages/ai/sokoban/alberta/screen.1.sol: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /other-languages/ai/sokoban/alberta/screen.31: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sokoban/alberta/screen.31 -------------------------------------------------------------------------------- /other-languages/ai/sokoban/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sokoban/runtests.sh -------------------------------------------------------------------------------- /other-languages/ai/sokoban/sokoban.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sokoban/sokoban.cpp -------------------------------------------------------------------------------- /other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-01.in -------------------------------------------------------------------------------- /other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-01.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-01.out -------------------------------------------------------------------------------- /other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-01.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-01.sol -------------------------------------------------------------------------------- /other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-02.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-02.in -------------------------------------------------------------------------------- /other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-02.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-02.out -------------------------------------------------------------------------------- /other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-02.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-02.sol -------------------------------------------------------------------------------- /other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-03.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-03.in -------------------------------------------------------------------------------- /other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-03.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-03.out -------------------------------------------------------------------------------- /other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-03.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-03.sol -------------------------------------------------------------------------------- /other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-04.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-04.in -------------------------------------------------------------------------------- /other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-04.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-04.out -------------------------------------------------------------------------------- /other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-04.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-04.sol -------------------------------------------------------------------------------- /other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-05.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-05.in -------------------------------------------------------------------------------- /other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-05.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-05.out -------------------------------------------------------------------------------- /other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-05.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-05.sol -------------------------------------------------------------------------------- /other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-06.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-06.in -------------------------------------------------------------------------------- /other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-06.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-06.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-06.sol -------------------------------------------------------------------------------- /other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-07.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-07.in -------------------------------------------------------------------------------- /other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-07.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-07.sol -------------------------------------------------------------------------------- /other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-08.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-08.in -------------------------------------------------------------------------------- /other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-08.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-08.sol -------------------------------------------------------------------------------- /other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-09.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-09.in -------------------------------------------------------------------------------- /other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-09.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk01-09.sol -------------------------------------------------------------------------------- /other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk02-10.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk02-10.in -------------------------------------------------------------------------------- /other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk02-10.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sokoban/sokobanonline/classic/thinkingrabbit/Boxxle/sk02-10.sol -------------------------------------------------------------------------------- /other-languages/ai/sudoku/sudoku.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sudoku/sudoku.cpp -------------------------------------------------------------------------------- /other-languages/ai/sudoku/test_001.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/ai/sudoku/test_001.in -------------------------------------------------------------------------------- /other-languages/array/merge/merge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/array/merge/merge.rb -------------------------------------------------------------------------------- /other-languages/array/partition/partition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/array/partition/partition.rb -------------------------------------------------------------------------------- /other-languages/bitwise/BitScanForwardDebruijn64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/bitwise/BitScanForwardDebruijn64.cs -------------------------------------------------------------------------------- /other-languages/bitwise/HammingWeight64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/bitwise/HammingWeight64.cs -------------------------------------------------------------------------------- /other-languages/bitwise/bsf-debruijn/BitScanForwardDebruijn64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/bitwise/bsf-debruijn/BitScanForwardDebruijn64.cs -------------------------------------------------------------------------------- /other-languages/bitwise/dec2hex/dec2hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/bitwise/dec2hex/dec2hex.c -------------------------------------------------------------------------------- /other-languages/bitwise/hamming-weight/HammingWeight64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/bitwise/hamming-weight/HammingWeight64.cs -------------------------------------------------------------------------------- /other-languages/bitwise/operations/operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/bitwise/operations/operations.cpp -------------------------------------------------------------------------------- /other-languages/bitwise/swap_xor/swap_xor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/bitwise/swap_xor/swap_xor.c -------------------------------------------------------------------------------- /other-languages/bitwise/swap_xor/swap_xor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/bitwise/swap_xor/swap_xor.cs -------------------------------------------------------------------------------- /other-languages/bitwise/swap_xor/swap_xor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/bitwise/swap_xor/swap_xor.php -------------------------------------------------------------------------------- /other-languages/date/leap-year/leap-year.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/date/leap-year/leap-year.lisp -------------------------------------------------------------------------------- /other-languages/date/leap-year/leap-year.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/date/leap-year/leap-year.php -------------------------------------------------------------------------------- /other-languages/date/leap-year/leap-year.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/date/leap-year/leap-year.rb -------------------------------------------------------------------------------- /other-languages/economics/financiamento/financiamento.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/economics/financiamento/financiamento.cs -------------------------------------------------------------------------------- /other-languages/economics/financiamento/financiamento.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/economics/financiamento/financiamento.lisp -------------------------------------------------------------------------------- /other-languages/economics/financiamento/financiamento.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/economics/financiamento/financiamento.php -------------------------------------------------------------------------------- /other-languages/economics/financiamento/financiamento.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/economics/financiamento/financiamento.rb -------------------------------------------------------------------------------- /other-languages/economics/juros-compostos/juros-compostos.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/economics/juros-compostos/juros-compostos.lisp -------------------------------------------------------------------------------- /other-languages/geography/haversine/haversine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/geography/haversine/haversine.rb -------------------------------------------------------------------------------- /other-languages/graphs/dijkstra/dijkstra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/graphs/dijkstra/dijkstra.cpp -------------------------------------------------------------------------------- /other-languages/graphs/dijkstra/dijkstra.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/graphs/dijkstra/dijkstra.java -------------------------------------------------------------------------------- /other-languages/graphs/floyd-warshall/floyd-warshall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/graphs/floyd-warshall/floyd-warshall.cpp -------------------------------------------------------------------------------- /other-languages/graphs/prim/prim.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/graphs/prim/prim.java -------------------------------------------------------------------------------- /other-languages/lang/nums2words.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/lang/nums2words.c -------------------------------------------------------------------------------- /other-languages/math/bhaskara/bhaskara.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/bhaskara/bhaskara.lisp -------------------------------------------------------------------------------- /other-languages/math/bhaskara/bhaskara.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/bhaskara/bhaskara.php -------------------------------------------------------------------------------- /other-languages/math/bhaskara/bhaskara.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/bhaskara/bhaskara.rb -------------------------------------------------------------------------------- /other-languages/math/dda/dda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/dda/dda.cpp -------------------------------------------------------------------------------- /other-languages/math/dda/dda.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/dda/dda.cs -------------------------------------------------------------------------------- /other-languages/math/dda/dda.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/dda/dda.java -------------------------------------------------------------------------------- /other-languages/math/dda/dda.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/dda/dda.php -------------------------------------------------------------------------------- /other-languages/math/dda/dda.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/dda/dda.rb -------------------------------------------------------------------------------- /other-languages/math/determinant/determinant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/determinant/determinant.cpp -------------------------------------------------------------------------------- /other-languages/math/determinant/determinant.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/determinant/determinant.rb -------------------------------------------------------------------------------- /other-languages/math/divisors/divisor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/divisors/divisor.rb -------------------------------------------------------------------------------- /other-languages/math/eratostenes/eratostenes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/eratostenes/eratostenes.java -------------------------------------------------------------------------------- /other-languages/math/even/even.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/even/even.c -------------------------------------------------------------------------------- /other-languages/math/fatorial/fatorial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/fatorial/fatorial.cs -------------------------------------------------------------------------------- /other-languages/math/fatorial/fatorial.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/fatorial/fatorial.lisp -------------------------------------------------------------------------------- /other-languages/math/fatorial/fatorial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/fatorial/fatorial.php -------------------------------------------------------------------------------- /other-languages/math/fatorial/fatorial.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/fatorial/fatorial.rb -------------------------------------------------------------------------------- /other-languages/math/fibonacci/fibonacci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/fibonacci/fibonacci.c -------------------------------------------------------------------------------- /other-languages/math/fibonacci/fibonacci.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/fibonacci/fibonacci.clj -------------------------------------------------------------------------------- /other-languages/math/fibonacci/fibonacci.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/fibonacci/fibonacci.cs -------------------------------------------------------------------------------- /other-languages/math/fibonacci/fibonacci.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/fibonacci/fibonacci.java -------------------------------------------------------------------------------- /other-languages/math/fibonacci/fibonacci.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/fibonacci/fibonacci.lisp -------------------------------------------------------------------------------- /other-languages/math/fibonacci/fibonacci.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/fibonacci/fibonacci.lua -------------------------------------------------------------------------------- /other-languages/math/fibonacci/fibonacci.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/fibonacci/fibonacci.php -------------------------------------------------------------------------------- /other-languages/math/fibonacci/fibonacci.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/fibonacci/fibonacci.rb -------------------------------------------------------------------------------- /other-languages/math/gauss/sumgauss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/gauss/sumgauss.cpp -------------------------------------------------------------------------------- /other-languages/math/geometric-mean/geometric-mean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/geometric-mean/geometric-mean.cpp -------------------------------------------------------------------------------- /other-languages/math/linear-system/linear-system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/linear-system/linear-system.c -------------------------------------------------------------------------------- /other-languages/math/lu-decomposition/lu-decomposition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/lu-decomposition/lu-decomposition.cpp -------------------------------------------------------------------------------- /other-languages/math/lu-decomposition/lu-decomposition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/lu-decomposition/lu-decomposition.rb -------------------------------------------------------------------------------- /other-languages/math/matrix-transpose/matrix-transpose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/matrix-transpose/matrix-transpose.cpp -------------------------------------------------------------------------------- /other-languages/math/media-num/media-num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/media-num/media-num.c -------------------------------------------------------------------------------- /other-languages/math/media-num/media-num.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/media-num/media-num.rb -------------------------------------------------------------------------------- /other-languages/math/media/media.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/media/media.lisp -------------------------------------------------------------------------------- /other-languages/math/media/media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/media/media.php -------------------------------------------------------------------------------- /other-languages/math/media/media.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/media/media.rb -------------------------------------------------------------------------------- /other-languages/math/multiply-matrix/multiply-matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/multiply-matrix/multiply-matrix.cpp -------------------------------------------------------------------------------- /other-languages/math/n-root/MetodosNumericos.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/n-root/MetodosNumericos.java -------------------------------------------------------------------------------- /other-languages/math/perfect-numbers/perfectnumber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/perfect-numbers/perfectnumber.rb -------------------------------------------------------------------------------- /other-languages/math/pow/pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/pow/pow.c -------------------------------------------------------------------------------- /other-languages/math/stirlings-approximation/stirling.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/math/stirlings-approximation/stirling.clj -------------------------------------------------------------------------------- /other-languages/number-theory/euclid/euclid.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/number-theory/euclid/euclid.lisp -------------------------------------------------------------------------------- /other-languages/number-theory/euclid/euclid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/number-theory/euclid/euclid.rb -------------------------------------------------------------------------------- /other-languages/number-theory/inverse/inverse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/number-theory/inverse/inverse.c -------------------------------------------------------------------------------- /other-languages/number-theory/modular-exponentiation/modular-exponentiation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/number-theory/modular-exponentiation/modular-exponentiation.cpp -------------------------------------------------------------------------------- /other-languages/number-theory/odd-even/odd-even.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/number-theory/odd-even/odd-even.c -------------------------------------------------------------------------------- /other-languages/number-theory/odd/odd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/number-theory/odd/odd.c -------------------------------------------------------------------------------- /other-languages/number-theory/sieve/sieve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/number-theory/sieve/sieve.cpp -------------------------------------------------------------------------------- /other-languages/number-theory/sieve/sieve.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/number-theory/sieve/sieve.lisp -------------------------------------------------------------------------------- /other-languages/pattern-matching/lcs/lcs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/pattern-matching/lcs/lcs.rb -------------------------------------------------------------------------------- /other-languages/physics/ballistic/ballistic.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/physics/ballistic/ballistic.lisp -------------------------------------------------------------------------------- /other-languages/puzzle/hanoi/hanoi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/puzzle/hanoi/hanoi.cpp -------------------------------------------------------------------------------- /other-languages/puzzle/sudoku-validation/sudoku-validation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/puzzle/sudoku-validation/sudoku-validation.cpp -------------------------------------------------------------------------------- /other-languages/search/binary-search/BuscaBinaria.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/search/binary-search/BuscaBinaria.java -------------------------------------------------------------------------------- /other-languages/search/linear-search/linear-search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/search/linear-search/linear-search.rb -------------------------------------------------------------------------------- /other-languages/search/simul-smaller-higher/simul-smaller-higher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/search/simul-smaller-higher/simul-smaller-higher.cpp -------------------------------------------------------------------------------- /other-languages/sequence/token/token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/sequence/token/token.php -------------------------------------------------------------------------------- /other-languages/sequence/token/token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/sequence/token/token.rb -------------------------------------------------------------------------------- /other-languages/sorting/bozosort/bozosort.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/sorting/bozosort/bozosort.lisp -------------------------------------------------------------------------------- /other-languages/sorting/bozosort/bozosort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/sorting/bozosort/bozosort.php -------------------------------------------------------------------------------- /other-languages/sorting/bozosort/bozosort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/sorting/bozosort/bozosort.rb -------------------------------------------------------------------------------- /other-languages/sorting/bubblesort/bubblesort.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/sorting/bubblesort/bubblesort.lisp -------------------------------------------------------------------------------- /other-languages/sorting/bubblesort/bubblesort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/sorting/bubblesort/bubblesort.php -------------------------------------------------------------------------------- /other-languages/sorting/fisher-yates/fisher-yates.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/sorting/fisher-yates/fisher-yates.c -------------------------------------------------------------------------------- /other-languages/sorting/heapsort/heapsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/sorting/heapsort/heapsort.c -------------------------------------------------------------------------------- /other-languages/sorting/insertionsort/insertionsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/sorting/insertionsort/insertionsort.cpp -------------------------------------------------------------------------------- /other-languages/sorting/insertionsort/insertionsort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/sorting/insertionsort/insertionsort.php -------------------------------------------------------------------------------- /other-languages/sorting/insertionsort/insertionsort.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/sorting/insertionsort/insertionsort.pyc -------------------------------------------------------------------------------- /other-languages/sorting/insertionsort/insertionsort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/sorting/insertionsort/insertionsort.rb -------------------------------------------------------------------------------- /other-languages/sorting/mergesort/mergesort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/sorting/mergesort/mergesort.c -------------------------------------------------------------------------------- /other-languages/sorting/mergesort/mergesort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/sorting/mergesort/mergesort.rb -------------------------------------------------------------------------------- /other-languages/sorting/quicksort/quicksort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/sorting/quicksort/quicksort.c -------------------------------------------------------------------------------- /other-languages/sorting/quicksort/quicksort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/sorting/quicksort/quicksort.php -------------------------------------------------------------------------------- /other-languages/sorting/quicksort/quicksort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/sorting/quicksort/quicksort.rb -------------------------------------------------------------------------------- /other-languages/sorting/selectionsort/selectionsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/sorting/selectionsort/selectionsort.cpp -------------------------------------------------------------------------------- /other-languages/sorting/selectionsort/selectionsort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/sorting/selectionsort/selectionsort.php -------------------------------------------------------------------------------- /other-languages/sorting/shellsort/shellsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/sorting/shellsort/shellsort.cpp -------------------------------------------------------------------------------- /other-languages/sorting/stoogesort/stoogesort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacktoon/1001/HEAD/other-languages/sorting/stoogesort/stoogesort.cpp --------------------------------------------------------------------------------