├── LICENSE.md ├── Problem 0001 - Two Sum ├── c_fast.c ├── c_slow.c ├── cpp_fast.cpp ├── js_fast.js ├── php_fast.php ├── php_slow.php └── problem.md ├── Problem 0002 - Add Two Numbers ├── problem.md ├── solution.c ├── solution.cpp ├── solution.js └── solution.php ├── Problem 0003 - Longest Substring Without Repeating Characters ├── problem.md ├── solution.c ├── solution.js └── solution.php ├── Problem 0005 - Longest Palindromic Substring ├── problem.md ├── solution.c └── solution.php ├── Problem 0006 - Zigzag Conversion ├── problem.md └── solution.php ├── Problem 0007 - Reverse Integer ├── problem.md └── solution.c └── README.md /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisjeffsnow/leetcode-solutions/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Problem 0001 - Two Sum/c_fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisjeffsnow/leetcode-solutions/HEAD/Problem 0001 - Two Sum/c_fast.c -------------------------------------------------------------------------------- /Problem 0001 - Two Sum/c_slow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisjeffsnow/leetcode-solutions/HEAD/Problem 0001 - Two Sum/c_slow.c -------------------------------------------------------------------------------- /Problem 0001 - Two Sum/cpp_fast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisjeffsnow/leetcode-solutions/HEAD/Problem 0001 - Two Sum/cpp_fast.cpp -------------------------------------------------------------------------------- /Problem 0001 - Two Sum/js_fast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisjeffsnow/leetcode-solutions/HEAD/Problem 0001 - Two Sum/js_fast.js -------------------------------------------------------------------------------- /Problem 0001 - Two Sum/php_fast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisjeffsnow/leetcode-solutions/HEAD/Problem 0001 - Two Sum/php_fast.php -------------------------------------------------------------------------------- /Problem 0001 - Two Sum/php_slow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisjeffsnow/leetcode-solutions/HEAD/Problem 0001 - Two Sum/php_slow.php -------------------------------------------------------------------------------- /Problem 0001 - Two Sum/problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisjeffsnow/leetcode-solutions/HEAD/Problem 0001 - Two Sum/problem.md -------------------------------------------------------------------------------- /Problem 0002 - Add Two Numbers/problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisjeffsnow/leetcode-solutions/HEAD/Problem 0002 - Add Two Numbers/problem.md -------------------------------------------------------------------------------- /Problem 0002 - Add Two Numbers/solution.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisjeffsnow/leetcode-solutions/HEAD/Problem 0002 - Add Two Numbers/solution.c -------------------------------------------------------------------------------- /Problem 0002 - Add Two Numbers/solution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisjeffsnow/leetcode-solutions/HEAD/Problem 0002 - Add Two Numbers/solution.cpp -------------------------------------------------------------------------------- /Problem 0002 - Add Two Numbers/solution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisjeffsnow/leetcode-solutions/HEAD/Problem 0002 - Add Two Numbers/solution.js -------------------------------------------------------------------------------- /Problem 0002 - Add Two Numbers/solution.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisjeffsnow/leetcode-solutions/HEAD/Problem 0002 - Add Two Numbers/solution.php -------------------------------------------------------------------------------- /Problem 0003 - Longest Substring Without Repeating Characters/problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisjeffsnow/leetcode-solutions/HEAD/Problem 0003 - Longest Substring Without Repeating Characters/problem.md -------------------------------------------------------------------------------- /Problem 0003 - Longest Substring Without Repeating Characters/solution.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisjeffsnow/leetcode-solutions/HEAD/Problem 0003 - Longest Substring Without Repeating Characters/solution.c -------------------------------------------------------------------------------- /Problem 0003 - Longest Substring Without Repeating Characters/solution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisjeffsnow/leetcode-solutions/HEAD/Problem 0003 - Longest Substring Without Repeating Characters/solution.js -------------------------------------------------------------------------------- /Problem 0003 - Longest Substring Without Repeating Characters/solution.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisjeffsnow/leetcode-solutions/HEAD/Problem 0003 - Longest Substring Without Repeating Characters/solution.php -------------------------------------------------------------------------------- /Problem 0005 - Longest Palindromic Substring/problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisjeffsnow/leetcode-solutions/HEAD/Problem 0005 - Longest Palindromic Substring/problem.md -------------------------------------------------------------------------------- /Problem 0005 - Longest Palindromic Substring/solution.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisjeffsnow/leetcode-solutions/HEAD/Problem 0005 - Longest Palindromic Substring/solution.c -------------------------------------------------------------------------------- /Problem 0005 - Longest Palindromic Substring/solution.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisjeffsnow/leetcode-solutions/HEAD/Problem 0005 - Longest Palindromic Substring/solution.php -------------------------------------------------------------------------------- /Problem 0006 - Zigzag Conversion/problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisjeffsnow/leetcode-solutions/HEAD/Problem 0006 - Zigzag Conversion/problem.md -------------------------------------------------------------------------------- /Problem 0006 - Zigzag Conversion/solution.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisjeffsnow/leetcode-solutions/HEAD/Problem 0006 - Zigzag Conversion/solution.php -------------------------------------------------------------------------------- /Problem 0007 - Reverse Integer/problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisjeffsnow/leetcode-solutions/HEAD/Problem 0007 - Reverse Integer/problem.md -------------------------------------------------------------------------------- /Problem 0007 - Reverse Integer/solution.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisjeffsnow/leetcode-solutions/HEAD/Problem 0007 - Reverse Integer/solution.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisjeffsnow/leetcode-solutions/HEAD/README.md --------------------------------------------------------------------------------