├── .github └── FUNDING.yml ├── .gitignore ├── Algorithms ├── binary_search.py ├── bubble_sort.py ├── counting_sort.py ├── insertion_sort.py ├── merge_sort.py ├── quick_sort.py └── selection_sort.py ├── CodeWars ├── JavaScript │ ├── Array.diff.js │ ├── Count of positives sum of negatives.js │ ├── Even or Odd.js │ ├── Find the next perfect square!.js │ ├── Find the position!.js │ ├── Find the smallest integer in the array.js │ ├── Find the stray number.js │ ├── Flatten.js │ ├── Grasshopper - Basic Function Fixer.js │ ├── IQ Test.js │ ├── Is this a triangle?.js │ ├── Math Issues.js │ ├── Multiplication Tables.js │ ├── Persistent Bugger.js │ ├── Powers of 2.js │ ├── Price of Mangoes.js │ ├── Regular Ball Super Ball.js │ ├── Remove First and Last Character.js │ ├── Replace With Alphabet Position.js │ ├── String to integer conversion.js │ ├── Strip Comments.js │ ├── Sum of odd numbers.js │ ├── Summing a number's digits.js │ ├── The highest profit wins!.js │ └── Vowel Count.js └── Python │ ├── A Rule of Divisibility by 13.py │ ├── All Inclusive?.py │ ├── Buying a car.py │ ├── Categorize New Member.py │ ├── Character Frequency.py │ ├── Convert a Boolean to a String.py │ ├── Counting Duplicates.py │ ├── Custom Array Filters.py │ ├── Dashatize it.py │ ├── Delete occurrences of an element if it occurs more than n times.py │ ├── Fibonacci, Tribonacci and friends.py │ ├── Find the vowels.py │ ├── Give me a Diamond.py │ ├── Master of Files.py │ ├── Moving Zeros To The End.py │ ├── Multiply.py │ ├── Opposite number.py │ ├── PatternCraft - State.py │ ├── Product of consecutive Fib numbers.py │ ├── Recursive reverse string.py │ ├── Regexp Basics - is it IPv4 address?.py │ ├── Reverse or rotate?.py │ ├── Reverse words.py │ ├── Shortest Word.py │ ├── Smallest unused ID.py │ ├── Sorted? yes? no? how?.py │ ├── String to integer conversion.py │ ├── Sum of Triangular Numbers.py │ ├── Terminal Game #2.py │ ├── The Shell Game.py │ ├── The latest clock.py │ ├── Title Case.py │ ├── Tree to list.py │ ├── Tribonacci Sequence.py │ ├── Unique In Order.py │ ├── Who likes it?.py │ └── Write Number in Expanded Form.py ├── FromTheInternet ├── Get Products.py ├── Highest Product Of 3.py ├── Implement a Queue.py ├── Print Directory Contents.py ├── Rotate an Array.py └── yesterdays stock prices.py ├── HackerRank └── Python │ └── Simple Array Sum.py ├── LICENSE ├── README.md └── crackmes.one └── 1-very_easy └── easy_reverse ├── ghidra.zip ├── rev50_linux64-bit └── solution.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/.gitignore -------------------------------------------------------------------------------- /Algorithms/binary_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/Algorithms/binary_search.py -------------------------------------------------------------------------------- /Algorithms/bubble_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/Algorithms/bubble_sort.py -------------------------------------------------------------------------------- /Algorithms/counting_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/Algorithms/counting_sort.py -------------------------------------------------------------------------------- /Algorithms/insertion_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/Algorithms/insertion_sort.py -------------------------------------------------------------------------------- /Algorithms/merge_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/Algorithms/merge_sort.py -------------------------------------------------------------------------------- /Algorithms/quick_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/Algorithms/quick_sort.py -------------------------------------------------------------------------------- /Algorithms/selection_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/Algorithms/selection_sort.py -------------------------------------------------------------------------------- /CodeWars/JavaScript/Array.diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/JavaScript/Array.diff.js -------------------------------------------------------------------------------- /CodeWars/JavaScript/Count of positives sum of negatives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/JavaScript/Count of positives sum of negatives.js -------------------------------------------------------------------------------- /CodeWars/JavaScript/Even or Odd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/JavaScript/Even or Odd.js -------------------------------------------------------------------------------- /CodeWars/JavaScript/Find the next perfect square!.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/JavaScript/Find the next perfect square!.js -------------------------------------------------------------------------------- /CodeWars/JavaScript/Find the position!.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/JavaScript/Find the position!.js -------------------------------------------------------------------------------- /CodeWars/JavaScript/Find the smallest integer in the array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/JavaScript/Find the smallest integer in the array.js -------------------------------------------------------------------------------- /CodeWars/JavaScript/Find the stray number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/JavaScript/Find the stray number.js -------------------------------------------------------------------------------- /CodeWars/JavaScript/Flatten.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/JavaScript/Flatten.js -------------------------------------------------------------------------------- /CodeWars/JavaScript/Grasshopper - Basic Function Fixer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/JavaScript/Grasshopper - Basic Function Fixer.js -------------------------------------------------------------------------------- /CodeWars/JavaScript/IQ Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/JavaScript/IQ Test.js -------------------------------------------------------------------------------- /CodeWars/JavaScript/Is this a triangle?.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/JavaScript/Is this a triangle?.js -------------------------------------------------------------------------------- /CodeWars/JavaScript/Math Issues.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/JavaScript/Math Issues.js -------------------------------------------------------------------------------- /CodeWars/JavaScript/Multiplication Tables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/JavaScript/Multiplication Tables.js -------------------------------------------------------------------------------- /CodeWars/JavaScript/Persistent Bugger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/JavaScript/Persistent Bugger.js -------------------------------------------------------------------------------- /CodeWars/JavaScript/Powers of 2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/JavaScript/Powers of 2.js -------------------------------------------------------------------------------- /CodeWars/JavaScript/Price of Mangoes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/JavaScript/Price of Mangoes.js -------------------------------------------------------------------------------- /CodeWars/JavaScript/Regular Ball Super Ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/JavaScript/Regular Ball Super Ball.js -------------------------------------------------------------------------------- /CodeWars/JavaScript/Remove First and Last Character.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/JavaScript/Remove First and Last Character.js -------------------------------------------------------------------------------- /CodeWars/JavaScript/Replace With Alphabet Position.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/JavaScript/Replace With Alphabet Position.js -------------------------------------------------------------------------------- /CodeWars/JavaScript/String to integer conversion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/JavaScript/String to integer conversion.js -------------------------------------------------------------------------------- /CodeWars/JavaScript/Strip Comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/JavaScript/Strip Comments.js -------------------------------------------------------------------------------- /CodeWars/JavaScript/Sum of odd numbers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/JavaScript/Sum of odd numbers.js -------------------------------------------------------------------------------- /CodeWars/JavaScript/Summing a number's digits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/JavaScript/Summing a number's digits.js -------------------------------------------------------------------------------- /CodeWars/JavaScript/The highest profit wins!.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/JavaScript/The highest profit wins!.js -------------------------------------------------------------------------------- /CodeWars/JavaScript/Vowel Count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/JavaScript/Vowel Count.js -------------------------------------------------------------------------------- /CodeWars/Python/A Rule of Divisibility by 13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/A Rule of Divisibility by 13.py -------------------------------------------------------------------------------- /CodeWars/Python/All Inclusive?.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/All Inclusive?.py -------------------------------------------------------------------------------- /CodeWars/Python/Buying a car.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Buying a car.py -------------------------------------------------------------------------------- /CodeWars/Python/Categorize New Member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Categorize New Member.py -------------------------------------------------------------------------------- /CodeWars/Python/Character Frequency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Character Frequency.py -------------------------------------------------------------------------------- /CodeWars/Python/Convert a Boolean to a String.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Convert a Boolean to a String.py -------------------------------------------------------------------------------- /CodeWars/Python/Counting Duplicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Counting Duplicates.py -------------------------------------------------------------------------------- /CodeWars/Python/Custom Array Filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Custom Array Filters.py -------------------------------------------------------------------------------- /CodeWars/Python/Dashatize it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Dashatize it.py -------------------------------------------------------------------------------- /CodeWars/Python/Delete occurrences of an element if it occurs more than n times.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Delete occurrences of an element if it occurs more than n times.py -------------------------------------------------------------------------------- /CodeWars/Python/Fibonacci, Tribonacci and friends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Fibonacci, Tribonacci and friends.py -------------------------------------------------------------------------------- /CodeWars/Python/Find the vowels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Find the vowels.py -------------------------------------------------------------------------------- /CodeWars/Python/Give me a Diamond.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Give me a Diamond.py -------------------------------------------------------------------------------- /CodeWars/Python/Master of Files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Master of Files.py -------------------------------------------------------------------------------- /CodeWars/Python/Moving Zeros To The End.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Moving Zeros To The End.py -------------------------------------------------------------------------------- /CodeWars/Python/Multiply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Multiply.py -------------------------------------------------------------------------------- /CodeWars/Python/Opposite number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Opposite number.py -------------------------------------------------------------------------------- /CodeWars/Python/PatternCraft - State.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/PatternCraft - State.py -------------------------------------------------------------------------------- /CodeWars/Python/Product of consecutive Fib numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Product of consecutive Fib numbers.py -------------------------------------------------------------------------------- /CodeWars/Python/Recursive reverse string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Recursive reverse string.py -------------------------------------------------------------------------------- /CodeWars/Python/Regexp Basics - is it IPv4 address?.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Regexp Basics - is it IPv4 address?.py -------------------------------------------------------------------------------- /CodeWars/Python/Reverse or rotate?.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Reverse or rotate?.py -------------------------------------------------------------------------------- /CodeWars/Python/Reverse words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Reverse words.py -------------------------------------------------------------------------------- /CodeWars/Python/Shortest Word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Shortest Word.py -------------------------------------------------------------------------------- /CodeWars/Python/Smallest unused ID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Smallest unused ID.py -------------------------------------------------------------------------------- /CodeWars/Python/Sorted? yes? no? how?.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Sorted? yes? no? how?.py -------------------------------------------------------------------------------- /CodeWars/Python/String to integer conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/String to integer conversion.py -------------------------------------------------------------------------------- /CodeWars/Python/Sum of Triangular Numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Sum of Triangular Numbers.py -------------------------------------------------------------------------------- /CodeWars/Python/Terminal Game #2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Terminal Game #2.py -------------------------------------------------------------------------------- /CodeWars/Python/The Shell Game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/The Shell Game.py -------------------------------------------------------------------------------- /CodeWars/Python/The latest clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/The latest clock.py -------------------------------------------------------------------------------- /CodeWars/Python/Title Case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Title Case.py -------------------------------------------------------------------------------- /CodeWars/Python/Tree to list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Tree to list.py -------------------------------------------------------------------------------- /CodeWars/Python/Tribonacci Sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Tribonacci Sequence.py -------------------------------------------------------------------------------- /CodeWars/Python/Unique In Order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Unique In Order.py -------------------------------------------------------------------------------- /CodeWars/Python/Who likes it?.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Who likes it?.py -------------------------------------------------------------------------------- /CodeWars/Python/Write Number in Expanded Form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/CodeWars/Python/Write Number in Expanded Form.py -------------------------------------------------------------------------------- /FromTheInternet/Get Products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/FromTheInternet/Get Products.py -------------------------------------------------------------------------------- /FromTheInternet/Highest Product Of 3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/FromTheInternet/Highest Product Of 3.py -------------------------------------------------------------------------------- /FromTheInternet/Implement a Queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/FromTheInternet/Implement a Queue.py -------------------------------------------------------------------------------- /FromTheInternet/Print Directory Contents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/FromTheInternet/Print Directory Contents.py -------------------------------------------------------------------------------- /FromTheInternet/Rotate an Array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/FromTheInternet/Rotate an Array.py -------------------------------------------------------------------------------- /FromTheInternet/yesterdays stock prices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/FromTheInternet/yesterdays stock prices.py -------------------------------------------------------------------------------- /HackerRank/Python/Simple Array Sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/HackerRank/Python/Simple Array Sum.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/README.md -------------------------------------------------------------------------------- /crackmes.one/1-very_easy/easy_reverse/ghidra.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/crackmes.one/1-very_easy/easy_reverse/ghidra.zip -------------------------------------------------------------------------------- /crackmes.one/1-very_easy/easy_reverse/rev50_linux64-bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/crackmes.one/1-very_easy/easy_reverse/rev50_linux64-bit -------------------------------------------------------------------------------- /crackmes.one/1-very_easy/easy_reverse/solution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/challenges/HEAD/crackmes.one/1-very_easy/easy_reverse/solution.txt --------------------------------------------------------------------------------