├── CodeChef ├── Problems │ ├── README.md │ └── School │ │ ├── ATM-HS08TEST │ │ └── submit.c │ │ └── README.md └── README.md ├── CodePen ├── Challenges │ └── README.md └── README.md ├── Codecademy ├── Challenges │ └── README.md └── README.md ├── Codeforces ├── Problemset │ ├── .gitignore │ ├── README.md │ └── Watermelon │ │ └── submit.c └── README.md ├── Coderbyte ├── Challenges │ ├── Easy │ │ ├── ABCheck.cs │ │ ├── ABCheck.js │ │ ├── ABCheck │ │ │ ├── .gitignore │ │ │ ├── ABCheck.csproj │ │ │ └── Program.cs │ │ └── PowerSetCount.js │ ├── Hard │ │ ├── ArrayCouples.js │ │ ├── Calculator.cs │ │ ├── Calculator.js │ │ └── Calculator │ │ │ ├── .gitignore │ │ │ ├── Calculator.csproj │ │ │ └── Program.cs │ ├── Medium │ │ ├── DistinctList.cs │ │ ├── DistinctList.js │ │ ├── DistinctList │ │ │ ├── .gitignore │ │ │ ├── DistinctList.csproj │ │ │ └── Program.cs │ │ └── EvenPairs.js │ └── README.md ├── README.md └── Starter-Courses │ ├── Learn-JavaScript-in-One-Week │ └── README.md │ └── README.md ├── Coderspace ├── README.md └── Tests │ ├── CSharp │ └── Positive-Prefixes │ │ ├── .gitignore │ │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ │ ├── PositivePrefixes.csproj │ │ └── Program.cs │ ├── Multiple-Choices │ └── MultipleChoices.txt │ └── README.md ├── Codewars ├── Kata │ ├── Multiplies-of-3-or-5 │ │ └── solution.c │ ├── Multiply │ │ └── solution.c │ └── README.md └── README.md ├── Codility ├── Challenges │ └── README.md ├── Exercises │ └── README.md ├── Lessons │ └── README.md └── README.md ├── Coensio ├── Assessments │ ├── FindMissing │ │ ├── .gitignore │ │ ├── FindMissing.csproj │ │ └── Program.cs │ ├── MaxElement │ │ ├── .gitignore │ │ ├── MaxElement.csproj │ │ └── Program.cs │ ├── OccurringCharacters │ │ ├── .gitignore │ │ ├── OccurringCharacters.csproj │ │ └── Program.cs │ └── README.md └── README.md ├── FreeCodeCamp ├── Learn │ ├── JavaScript-Algorithms-and-Data-Structures │ │ ├── Projects │ │ │ ├── Palindrome-Checker │ │ │ │ └── palindrome-checker.txt │ │ │ ├── README.md │ │ │ └── Roman-Numeral-Converter │ │ │ │ └── roman-numeral-converter.txt │ │ └── README.md │ └── README.md └── README.md ├── GeeksForGeeks ├── Courses │ └── README.md ├── Problems │ └── README.md └── README.md ├── GlobalAIHub ├── Courses │ └── README.md └── README.md ├── HackerRank ├── Practice │ ├── Algorithms │ │ ├── README.md │ │ └── Warmup │ │ │ └── Staircase │ │ │ └── Problem │ │ │ └── staircase-English.pdf │ ├── Data-Structures │ │ └── README.md │ ├── README.md │ └── Tutorials │ │ ├── 10-Days-of-Javascript │ │ ├── .gitignore │ │ ├── Day-0-Hello-World │ │ │ └── js10-hello-world-English.pdf │ │ └── README.md │ │ ├── 30-Days-of-Code │ │ ├── C# │ │ │ ├── .gitignore │ │ │ ├── Day-0-Hello-World │ │ │ │ ├── Problem │ │ │ │ │ └── 30-hello-world-English.pdf │ │ │ │ ├── Solution │ │ │ │ │ ├── .vscode │ │ │ │ │ │ ├── launch.json │ │ │ │ │ │ └── tasks.json │ │ │ │ │ ├── Program.cs │ │ │ │ │ └── Solution.csproj │ │ │ │ └── Test-Cases │ │ │ │ │ ├── input │ │ │ │ │ └── input00.txt │ │ │ │ │ └── output │ │ │ │ │ └── output00.txt │ │ │ ├── Day-1-Data-Types │ │ │ │ ├── Problem │ │ │ │ │ └── 30-data-types-English.pdf │ │ │ │ ├── Solution │ │ │ │ │ ├── .vscode │ │ │ │ │ │ ├── launch.json │ │ │ │ │ │ └── tasks.json │ │ │ │ │ ├── Program.cs │ │ │ │ │ └── Solution.csproj │ │ │ │ └── Test-Cases │ │ │ │ │ ├── input │ │ │ │ │ └── input00.txt │ │ │ │ │ └── output │ │ │ │ │ └── output00.txt │ │ │ ├── Day-2-Operators │ │ │ │ ├── Problem │ │ │ │ │ └── 30-operators-English.pdf │ │ │ │ ├── Solution │ │ │ │ │ ├── .vscode │ │ │ │ │ │ ├── launch.json │ │ │ │ │ │ └── tasks.json │ │ │ │ │ ├── Program.cs │ │ │ │ │ └── Solution.csproj │ │ │ │ └── Test-Cases │ │ │ │ │ ├── input │ │ │ │ │ ├── input00.txt │ │ │ │ │ └── input01.txt │ │ │ │ │ └── output │ │ │ │ │ ├── output00.txt │ │ │ │ │ └── output01.txt │ │ │ ├── Day-3-Intro-to-Conditional-Statements │ │ │ │ ├── Problem │ │ │ │ │ └── 30-conditional-statements-English.pdf │ │ │ │ └── Solution │ │ │ │ │ ├── .vscode │ │ │ │ │ ├── launch.json │ │ │ │ │ └── tasks.json │ │ │ │ │ ├── Program.cs │ │ │ │ │ └── Solution.csproj │ │ │ ├── Day-5-Loops │ │ │ │ └── Problem │ │ │ │ │ └── 30-loops-English.pdf │ │ │ └── README.md │ │ └── README.md │ │ └── README.md └── README.md ├── LICENSE ├── LeetCode ├── Learn │ └── README.md ├── Problemset │ └── README.md └── README.md ├── PatikaDev ├── Modules │ ├── CSharp-101 │ │ ├── .gitignore │ │ ├── 2-ConsoleProgramming │ │ │ └── Program │ │ │ │ ├── .vscode │ │ │ │ ├── launch.json │ │ │ │ └── tasks.json │ │ │ │ ├── Program.cs │ │ │ │ └── Program.csproj │ │ ├── 3-VariablesDataTypes │ │ │ └── Program │ │ │ │ ├── .vscode │ │ │ │ ├── launch.json │ │ │ │ └── tasks.json │ │ │ │ ├── Program.cs │ │ │ │ └── Program.csproj │ │ ├── 4-Operators │ │ │ └── Program │ │ │ │ ├── .vscode │ │ │ │ ├── launch.json │ │ │ │ └── tasks.json │ │ │ │ ├── Program.cs │ │ │ │ └── Program.csproj │ │ ├── 5-TypeConversions │ │ │ └── Program │ │ │ │ ├── .vscode │ │ │ │ ├── launch.json │ │ │ │ └── tasks.json │ │ │ │ ├── Program.cs │ │ │ │ ├── Program.csproj │ │ │ │ └── UnSafeCast.cs │ │ ├── 6-TryCatch │ │ │ └── Program │ │ │ │ ├── .vscode │ │ │ │ ├── launch.json │ │ │ │ └── tasks.json │ │ │ │ ├── Program.cs │ │ │ │ └── Program.csproj │ │ ├── 7-DecisionStructures │ │ │ └── Program │ │ │ │ ├── .vscode │ │ │ │ ├── launch.json │ │ │ │ └── tasks.json │ │ │ │ ├── Program.cs │ │ │ │ └── Program.csproj │ │ ├── 8-Loops │ │ │ └── Program │ │ │ │ ├── .vscode │ │ │ │ ├── launch.json │ │ │ │ └── tasks.json │ │ │ │ ├── Program.cs │ │ │ │ └── Program.csproj │ │ ├── 9-Arrays │ │ │ └── Program │ │ │ │ ├── .vscode │ │ │ │ ├── launch.json │ │ │ │ └── tasks.json │ │ │ │ ├── Program.cs │ │ │ │ └── Program.csproj │ │ └── README.md │ └── README.md └── README.md ├── README.md └── Topcoder ├── Challenges └── README.md ├── Practice └── README.md └── README.md /CodeChef/Problems/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/CodeChef/Problems/README.md -------------------------------------------------------------------------------- /CodeChef/Problems/School/ATM-HS08TEST/submit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/CodeChef/Problems/School/ATM-HS08TEST/submit.c -------------------------------------------------------------------------------- /CodeChef/Problems/School/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/CodeChef/Problems/School/README.md -------------------------------------------------------------------------------- /CodeChef/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/CodeChef/README.md -------------------------------------------------------------------------------- /CodePen/Challenges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/CodePen/Challenges/README.md -------------------------------------------------------------------------------- /CodePen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/CodePen/README.md -------------------------------------------------------------------------------- /Codecademy/Challenges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Codecademy/Challenges/README.md -------------------------------------------------------------------------------- /Codecademy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Codecademy/README.md -------------------------------------------------------------------------------- /Codeforces/Problemset/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Codeforces/Problemset/.gitignore -------------------------------------------------------------------------------- /Codeforces/Problemset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Codeforces/Problemset/README.md -------------------------------------------------------------------------------- /Codeforces/Problemset/Watermelon/submit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Codeforces/Problemset/Watermelon/submit.c -------------------------------------------------------------------------------- /Codeforces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Codeforces/README.md -------------------------------------------------------------------------------- /Coderbyte/Challenges/Easy/ABCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coderbyte/Challenges/Easy/ABCheck.cs -------------------------------------------------------------------------------- /Coderbyte/Challenges/Easy/ABCheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coderbyte/Challenges/Easy/ABCheck.js -------------------------------------------------------------------------------- /Coderbyte/Challenges/Easy/ABCheck/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coderbyte/Challenges/Easy/ABCheck/.gitignore -------------------------------------------------------------------------------- /Coderbyte/Challenges/Easy/ABCheck/ABCheck.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coderbyte/Challenges/Easy/ABCheck/ABCheck.csproj -------------------------------------------------------------------------------- /Coderbyte/Challenges/Easy/ABCheck/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coderbyte/Challenges/Easy/ABCheck/Program.cs -------------------------------------------------------------------------------- /Coderbyte/Challenges/Easy/PowerSetCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coderbyte/Challenges/Easy/PowerSetCount.js -------------------------------------------------------------------------------- /Coderbyte/Challenges/Hard/ArrayCouples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coderbyte/Challenges/Hard/ArrayCouples.js -------------------------------------------------------------------------------- /Coderbyte/Challenges/Hard/Calculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coderbyte/Challenges/Hard/Calculator.cs -------------------------------------------------------------------------------- /Coderbyte/Challenges/Hard/Calculator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coderbyte/Challenges/Hard/Calculator.js -------------------------------------------------------------------------------- /Coderbyte/Challenges/Hard/Calculator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coderbyte/Challenges/Hard/Calculator/.gitignore -------------------------------------------------------------------------------- /Coderbyte/Challenges/Hard/Calculator/Calculator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coderbyte/Challenges/Hard/Calculator/Calculator.csproj -------------------------------------------------------------------------------- /Coderbyte/Challenges/Hard/Calculator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coderbyte/Challenges/Hard/Calculator/Program.cs -------------------------------------------------------------------------------- /Coderbyte/Challenges/Medium/DistinctList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coderbyte/Challenges/Medium/DistinctList.cs -------------------------------------------------------------------------------- /Coderbyte/Challenges/Medium/DistinctList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coderbyte/Challenges/Medium/DistinctList.js -------------------------------------------------------------------------------- /Coderbyte/Challenges/Medium/DistinctList/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coderbyte/Challenges/Medium/DistinctList/.gitignore -------------------------------------------------------------------------------- /Coderbyte/Challenges/Medium/DistinctList/DistinctList.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coderbyte/Challenges/Medium/DistinctList/DistinctList.csproj -------------------------------------------------------------------------------- /Coderbyte/Challenges/Medium/DistinctList/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coderbyte/Challenges/Medium/DistinctList/Program.cs -------------------------------------------------------------------------------- /Coderbyte/Challenges/Medium/EvenPairs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coderbyte/Challenges/Medium/EvenPairs.js -------------------------------------------------------------------------------- /Coderbyte/Challenges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coderbyte/Challenges/README.md -------------------------------------------------------------------------------- /Coderbyte/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coderbyte/README.md -------------------------------------------------------------------------------- /Coderbyte/Starter-Courses/Learn-JavaScript-in-One-Week/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coderbyte/Starter-Courses/Learn-JavaScript-in-One-Week/README.md -------------------------------------------------------------------------------- /Coderbyte/Starter-Courses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coderbyte/Starter-Courses/README.md -------------------------------------------------------------------------------- /Coderspace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coderspace/README.md -------------------------------------------------------------------------------- /Coderspace/Tests/CSharp/Positive-Prefixes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coderspace/Tests/CSharp/Positive-Prefixes/.gitignore -------------------------------------------------------------------------------- /Coderspace/Tests/CSharp/Positive-Prefixes/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coderspace/Tests/CSharp/Positive-Prefixes/.vscode/launch.json -------------------------------------------------------------------------------- /Coderspace/Tests/CSharp/Positive-Prefixes/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coderspace/Tests/CSharp/Positive-Prefixes/.vscode/tasks.json -------------------------------------------------------------------------------- /Coderspace/Tests/CSharp/Positive-Prefixes/PositivePrefixes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coderspace/Tests/CSharp/Positive-Prefixes/PositivePrefixes.csproj -------------------------------------------------------------------------------- /Coderspace/Tests/CSharp/Positive-Prefixes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coderspace/Tests/CSharp/Positive-Prefixes/Program.cs -------------------------------------------------------------------------------- /Coderspace/Tests/Multiple-Choices/MultipleChoices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coderspace/Tests/Multiple-Choices/MultipleChoices.txt -------------------------------------------------------------------------------- /Coderspace/Tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coderspace/Tests/README.md -------------------------------------------------------------------------------- /Codewars/Kata/Multiplies-of-3-or-5/solution.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Codewars/Kata/Multiplies-of-3-or-5/solution.c -------------------------------------------------------------------------------- /Codewars/Kata/Multiply/solution.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Codewars/Kata/Multiply/solution.c -------------------------------------------------------------------------------- /Codewars/Kata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Codewars/Kata/README.md -------------------------------------------------------------------------------- /Codewars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Codewars/README.md -------------------------------------------------------------------------------- /Codility/Challenges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Codility/Challenges/README.md -------------------------------------------------------------------------------- /Codility/Exercises/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Codility/Exercises/README.md -------------------------------------------------------------------------------- /Codility/Lessons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Codility/Lessons/README.md -------------------------------------------------------------------------------- /Codility/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Codility/README.md -------------------------------------------------------------------------------- /Coensio/Assessments/FindMissing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coensio/Assessments/FindMissing/.gitignore -------------------------------------------------------------------------------- /Coensio/Assessments/FindMissing/FindMissing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coensio/Assessments/FindMissing/FindMissing.csproj -------------------------------------------------------------------------------- /Coensio/Assessments/FindMissing/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coensio/Assessments/FindMissing/Program.cs -------------------------------------------------------------------------------- /Coensio/Assessments/MaxElement/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coensio/Assessments/MaxElement/.gitignore -------------------------------------------------------------------------------- /Coensio/Assessments/MaxElement/MaxElement.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coensio/Assessments/MaxElement/MaxElement.csproj -------------------------------------------------------------------------------- /Coensio/Assessments/MaxElement/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coensio/Assessments/MaxElement/Program.cs -------------------------------------------------------------------------------- /Coensio/Assessments/OccurringCharacters/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coensio/Assessments/OccurringCharacters/.gitignore -------------------------------------------------------------------------------- /Coensio/Assessments/OccurringCharacters/OccurringCharacters.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coensio/Assessments/OccurringCharacters/OccurringCharacters.csproj -------------------------------------------------------------------------------- /Coensio/Assessments/OccurringCharacters/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coensio/Assessments/OccurringCharacters/Program.cs -------------------------------------------------------------------------------- /Coensio/Assessments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coensio/Assessments/README.md -------------------------------------------------------------------------------- /Coensio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Coensio/README.md -------------------------------------------------------------------------------- /FreeCodeCamp/Learn/JavaScript-Algorithms-and-Data-Structures/Projects/Palindrome-Checker/palindrome-checker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/FreeCodeCamp/Learn/JavaScript-Algorithms-and-Data-Structures/Projects/Palindrome-Checker/palindrome-checker.txt -------------------------------------------------------------------------------- /FreeCodeCamp/Learn/JavaScript-Algorithms-and-Data-Structures/Projects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/FreeCodeCamp/Learn/JavaScript-Algorithms-and-Data-Structures/Projects/README.md -------------------------------------------------------------------------------- /FreeCodeCamp/Learn/JavaScript-Algorithms-and-Data-Structures/Projects/Roman-Numeral-Converter/roman-numeral-converter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/FreeCodeCamp/Learn/JavaScript-Algorithms-and-Data-Structures/Projects/Roman-Numeral-Converter/roman-numeral-converter.txt -------------------------------------------------------------------------------- /FreeCodeCamp/Learn/JavaScript-Algorithms-and-Data-Structures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/FreeCodeCamp/Learn/JavaScript-Algorithms-and-Data-Structures/README.md -------------------------------------------------------------------------------- /FreeCodeCamp/Learn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/FreeCodeCamp/Learn/README.md -------------------------------------------------------------------------------- /FreeCodeCamp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/FreeCodeCamp/README.md -------------------------------------------------------------------------------- /GeeksForGeeks/Courses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/GeeksForGeeks/Courses/README.md -------------------------------------------------------------------------------- /GeeksForGeeks/Problems/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/GeeksForGeeks/Problems/README.md -------------------------------------------------------------------------------- /GeeksForGeeks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/GeeksForGeeks/README.md -------------------------------------------------------------------------------- /GlobalAIHub/Courses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/GlobalAIHub/Courses/README.md -------------------------------------------------------------------------------- /GlobalAIHub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/GlobalAIHub/README.md -------------------------------------------------------------------------------- /HackerRank/Practice/Algorithms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/Algorithms/README.md -------------------------------------------------------------------------------- /HackerRank/Practice/Algorithms/Warmup/Staircase/Problem/staircase-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/Algorithms/Warmup/Staircase/Problem/staircase-English.pdf -------------------------------------------------------------------------------- /HackerRank/Practice/Data-Structures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/Data-Structures/README.md -------------------------------------------------------------------------------- /HackerRank/Practice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/README.md -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/10-Days-of-Javascript/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/10-Days-of-Javascript/Day-0-Hello-World/js10-hello-world-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/Tutorials/10-Days-of-Javascript/Day-0-Hello-World/js10-hello-world-English.pdf -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/10-Days-of-Javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/Tutorials/10-Days-of-Javascript/README.md -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/Tutorials/30-Days-of-Code/C#/.gitignore -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-0-Hello-World/Problem/30-hello-world-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-0-Hello-World/Problem/30-hello-world-English.pdf -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-0-Hello-World/Solution/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-0-Hello-World/Solution/.vscode/launch.json -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-0-Hello-World/Solution/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-0-Hello-World/Solution/.vscode/tasks.json -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-0-Hello-World/Solution/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-0-Hello-World/Solution/Program.cs -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-0-Hello-World/Solution/Solution.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-0-Hello-World/Solution/Solution.csproj -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-0-Hello-World/Test-Cases/input/input00.txt: -------------------------------------------------------------------------------- 1 | Welcome to 30 Days of Code! -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-0-Hello-World/Test-Cases/output/output00.txt: -------------------------------------------------------------------------------- 1 | Hello, World. 2 | Welcome to 30 Days of Code! -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-1-Data-Types/Problem/30-data-types-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-1-Data-Types/Problem/30-data-types-English.pdf -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-1-Data-Types/Solution/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-1-Data-Types/Solution/.vscode/launch.json -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-1-Data-Types/Solution/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-1-Data-Types/Solution/.vscode/tasks.json -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-1-Data-Types/Solution/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-1-Data-Types/Solution/Program.cs -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-1-Data-Types/Solution/Solution.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-1-Data-Types/Solution/Solution.csproj -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-1-Data-Types/Test-Cases/input/input00.txt: -------------------------------------------------------------------------------- 1 | 12 2 | 4.0 3 | is the best place to learn and practice coding! -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-1-Data-Types/Test-Cases/output/output00.txt: -------------------------------------------------------------------------------- 1 | 16 2 | 8.0 3 | HackerRank is the best place to learn and practice coding! -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-2-Operators/Problem/30-operators-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-2-Operators/Problem/30-operators-English.pdf -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-2-Operators/Solution/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-2-Operators/Solution/.vscode/launch.json -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-2-Operators/Solution/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-2-Operators/Solution/.vscode/tasks.json -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-2-Operators/Solution/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-2-Operators/Solution/Program.cs -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-2-Operators/Solution/Solution.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-2-Operators/Solution/Solution.csproj -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-2-Operators/Test-Cases/input/input00.txt: -------------------------------------------------------------------------------- 1 | 12.00 2 | 20 3 | 8 -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-2-Operators/Test-Cases/input/input01.txt: -------------------------------------------------------------------------------- 1 | 15.50 2 | 15 3 | 10 -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-2-Operators/Test-Cases/output/output00.txt: -------------------------------------------------------------------------------- 1 | 15 -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-2-Operators/Test-Cases/output/output01.txt: -------------------------------------------------------------------------------- 1 | 19 -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-3-Intro-to-Conditional-Statements/Problem/30-conditional-statements-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-3-Intro-to-Conditional-Statements/Problem/30-conditional-statements-English.pdf -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-3-Intro-to-Conditional-Statements/Solution/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-3-Intro-to-Conditional-Statements/Solution/.vscode/launch.json -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-3-Intro-to-Conditional-Statements/Solution/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-3-Intro-to-Conditional-Statements/Solution/.vscode/tasks.json -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-3-Intro-to-Conditional-Statements/Solution/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-3-Intro-to-Conditional-Statements/Solution/Program.cs -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-3-Intro-to-Conditional-Statements/Solution/Solution.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-3-Intro-to-Conditional-Statements/Solution/Solution.csproj -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-5-Loops/Problem/30-loops-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/Tutorials/30-Days-of-Code/C#/Day-5-Loops/Problem/30-loops-English.pdf -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/C#/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/Tutorials/30-Days-of-Code/C#/README.md -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/30-Days-of-Code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/Tutorials/30-Days-of-Code/README.md -------------------------------------------------------------------------------- /HackerRank/Practice/Tutorials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/Practice/Tutorials/README.md -------------------------------------------------------------------------------- /HackerRank/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/HackerRank/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/LICENSE -------------------------------------------------------------------------------- /LeetCode/Learn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/LeetCode/Learn/README.md -------------------------------------------------------------------------------- /LeetCode/Problemset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/LeetCode/Problemset/README.md -------------------------------------------------------------------------------- /LeetCode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/LeetCode/README.md -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/.gitignore -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/2-ConsoleProgramming/Program/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/2-ConsoleProgramming/Program/.vscode/launch.json -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/2-ConsoleProgramming/Program/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/2-ConsoleProgramming/Program/.vscode/tasks.json -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/2-ConsoleProgramming/Program/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/2-ConsoleProgramming/Program/Program.cs -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/2-ConsoleProgramming/Program/Program.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/2-ConsoleProgramming/Program/Program.csproj -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/3-VariablesDataTypes/Program/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/3-VariablesDataTypes/Program/.vscode/launch.json -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/3-VariablesDataTypes/Program/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/3-VariablesDataTypes/Program/.vscode/tasks.json -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/3-VariablesDataTypes/Program/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/3-VariablesDataTypes/Program/Program.cs -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/3-VariablesDataTypes/Program/Program.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/3-VariablesDataTypes/Program/Program.csproj -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/4-Operators/Program/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/4-Operators/Program/.vscode/launch.json -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/4-Operators/Program/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/4-Operators/Program/.vscode/tasks.json -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/4-Operators/Program/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/4-Operators/Program/Program.cs -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/4-Operators/Program/Program.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/4-Operators/Program/Program.csproj -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/5-TypeConversions/Program/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/5-TypeConversions/Program/.vscode/launch.json -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/5-TypeConversions/Program/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/5-TypeConversions/Program/.vscode/tasks.json -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/5-TypeConversions/Program/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/5-TypeConversions/Program/Program.cs -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/5-TypeConversions/Program/Program.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/5-TypeConversions/Program/Program.csproj -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/5-TypeConversions/Program/UnSafeCast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/5-TypeConversions/Program/UnSafeCast.cs -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/6-TryCatch/Program/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/6-TryCatch/Program/.vscode/launch.json -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/6-TryCatch/Program/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/6-TryCatch/Program/.vscode/tasks.json -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/6-TryCatch/Program/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/6-TryCatch/Program/Program.cs -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/6-TryCatch/Program/Program.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/6-TryCatch/Program/Program.csproj -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/7-DecisionStructures/Program/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/7-DecisionStructures/Program/.vscode/launch.json -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/7-DecisionStructures/Program/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/7-DecisionStructures/Program/.vscode/tasks.json -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/7-DecisionStructures/Program/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/7-DecisionStructures/Program/Program.cs -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/7-DecisionStructures/Program/Program.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/7-DecisionStructures/Program/Program.csproj -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/8-Loops/Program/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/8-Loops/Program/.vscode/launch.json -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/8-Loops/Program/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/8-Loops/Program/.vscode/tasks.json -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/8-Loops/Program/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/8-Loops/Program/Program.cs -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/8-Loops/Program/Program.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/8-Loops/Program/Program.csproj -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/9-Arrays/Program/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/9-Arrays/Program/.vscode/launch.json -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/9-Arrays/Program/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/9-Arrays/Program/.vscode/tasks.json -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/9-Arrays/Program/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/9-Arrays/Program/Program.cs -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/9-Arrays/Program/Program.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/9-Arrays/Program/Program.csproj -------------------------------------------------------------------------------- /PatikaDev/Modules/CSharp-101/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/CSharp-101/README.md -------------------------------------------------------------------------------- /PatikaDev/Modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/Modules/README.md -------------------------------------------------------------------------------- /PatikaDev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/PatikaDev/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/README.md -------------------------------------------------------------------------------- /Topcoder/Challenges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Topcoder/Challenges/README.md -------------------------------------------------------------------------------- /Topcoder/Practice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Topcoder/Practice/README.md -------------------------------------------------------------------------------- /Topcoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seydanurdemir/Coding-Challenges/HEAD/Topcoder/README.md --------------------------------------------------------------------------------