├── README.md ├── certificates ├── problem-solving-basic │ ├── active-traders │ │ ├── README.md │ │ ├── problem.png │ │ ├── solution.py │ │ ├── stub.cc │ │ ├── stub.py │ │ └── test-cases │ │ │ ├── input000.txt │ │ │ ├── input001.txt │ │ │ ├── input002.txt │ │ │ ├── input003.txt │ │ │ ├── input004.txt │ │ │ ├── input005.txt │ │ │ ├── input006.txt │ │ │ ├── input007.txt │ │ │ ├── input009.txt │ │ │ ├── output000.txt │ │ │ ├── output001.txt │ │ │ ├── output002.txt │ │ │ ├── output003.txt │ │ │ ├── output004.txt │ │ │ ├── output005.txt │ │ │ ├── output006.txt │ │ │ ├── output007.txt │ │ │ └── output009.txt │ ├── balanced-system-files-partition │ │ ├── README.md │ │ ├── problem.png │ │ ├── solution.py │ │ ├── stub.cc │ │ ├── stub.py │ │ └── test-cases │ │ │ ├── input000.txt │ │ │ ├── input001.txt │ │ │ ├── input002.txt │ │ │ ├── input003.txt │ │ │ ├── input004.txt │ │ │ ├── input005.txt │ │ │ ├── output000.txt │ │ │ ├── output001.txt │ │ │ ├── output002.txt │ │ │ ├── output003.txt │ │ │ ├── output004.txt │ │ │ └── output005.txt │ ├── longest-subarray │ │ ├── README.md │ │ ├── problem.png │ │ ├── solution.py │ │ ├── stub.cc │ │ ├── stub.py │ │ └── test-cases │ │ │ ├── input000.txt │ │ │ ├── input001.txt │ │ │ ├── input002.txt │ │ │ ├── input003.txt │ │ │ ├── input004.txt │ │ │ ├── input005.txt │ │ │ ├── input006.txt │ │ │ ├── input007.txt │ │ │ ├── output000.txt │ │ │ ├── output001.txt │ │ │ ├── output002.txt │ │ │ ├── output003.txt │ │ │ ├── output004.txt │ │ │ ├── output005.txt │ │ │ ├── output006.txt │ │ │ └── output007.txt │ ├── maximum-cost-of-laptop-count │ │ ├── README.md │ │ ├── problem.png │ │ ├── solution.py │ │ ├── stub.py │ │ └── test-cases │ │ │ ├── input000.txt │ │ │ ├── input001.txt │ │ │ ├── input002.txt │ │ │ ├── output000.txt │ │ │ ├── output001.txt │ │ │ └── output002.txt │ ├── nearly-similar-rectangles │ │ ├── README.md │ │ ├── problem.png │ │ ├── solution.py │ │ ├── stub.cc │ │ ├── stub.py │ │ └── test-cases │ │ │ ├── input000.txt │ │ │ ├── input001.txt │ │ │ ├── input002.txt │ │ │ ├── input003.txt │ │ │ ├── input004.txt │ │ │ ├── input005.txt │ │ │ ├── input006.txt │ │ │ ├── output000.txt │ │ │ ├── output001.txt │ │ │ ├── output002.txt │ │ │ ├── output003.txt │ │ │ ├── output004.txt │ │ │ ├── output005.txt │ │ │ └── output006.txt │ ├── parallel-processing │ │ ├── README.md │ │ ├── problem.png │ │ ├── solution.py │ │ ├── stub.cc │ │ ├── stub.py │ │ └── test-cases │ │ │ ├── input000.txt │ │ │ ├── input001.txt │ │ │ ├── input002.txt │ │ │ ├── input003.txt │ │ │ ├── input004.txt │ │ │ ├── input005.txt │ │ │ ├── input006.txt │ │ │ ├── input007.txt │ │ │ ├── input008.txt │ │ │ ├── output000.txt │ │ │ ├── output001.txt │ │ │ ├── output002.txt │ │ │ ├── output003.txt │ │ │ ├── output004.txt │ │ │ ├── output005.txt │ │ │ ├── output006.txt │ │ │ ├── output007.txt │ │ │ └── output008.txt │ ├── password-decryption │ │ ├── README.md │ │ ├── problem.png │ │ ├── solution.py │ │ ├── stub.py │ │ └── test-cases │ │ │ ├── input000.txt │ │ │ ├── input001.txt │ │ │ ├── input002.txt │ │ │ ├── input003.txt │ │ │ ├── input004.txt │ │ │ ├── input005.txt │ │ │ ├── input008.txt │ │ │ ├── output000.txt │ │ │ ├── output001.txt │ │ │ ├── output002.txt │ │ │ ├── output003.txt │ │ │ ├── output004.txt │ │ │ ├── output005.txt │ │ │ └── output008.txt │ ├── road-repair │ │ ├── README.md │ │ ├── problem.png │ │ ├── solution.py │ │ ├── stub.cc │ │ ├── stub.py │ │ └── test-cases │ │ │ ├── input000.txt │ │ │ ├── input001.txt │ │ │ ├── input002.txt │ │ │ ├── input003.txt │ │ │ ├── output000.txt │ │ │ ├── output001.txt │ │ │ ├── output002.txt │ │ │ └── output003.txt │ ├── string-anagram │ │ ├── README.md │ │ ├── problem.png │ │ ├── solution.py │ │ ├── stub.cc │ │ ├── stub.py │ │ └── test-cases │ │ │ ├── input000.txt │ │ │ ├── input001.txt │ │ │ ├── input002.txt │ │ │ ├── input003.txt │ │ │ ├── output000.txt │ │ │ ├── output001.txt │ │ │ ├── output002.txt │ │ │ └── output003.txt │ ├── subarray-sums │ │ ├── README.md │ │ ├── problem.png │ │ ├── solution.py │ │ ├── stub.cc │ │ ├── stub.py │ │ └── test-cases │ │ │ ├── input000.txt │ │ │ ├── input001.txt │ │ │ ├── input002.txt │ │ │ ├── input003.txt │ │ │ ├── input004.txt │ │ │ ├── output000.txt │ │ │ ├── output001.txt │ │ │ ├── output002.txt │ │ │ ├── output003.txt │ │ │ └── output004.txt │ ├── unexpected-demand │ │ ├── README.md │ │ ├── problem.png │ │ ├── solution.py │ │ ├── stub.cc │ │ ├── stub.py │ │ └── test-cases │ │ │ ├── input000.txt │ │ │ ├── input001.txt │ │ │ ├── input002.txt │ │ │ ├── input003.txt │ │ │ ├── input004.txt │ │ │ ├── input005.txt │ │ │ ├── output000.txt │ │ │ ├── output001.txt │ │ │ ├── output002.txt │ │ │ ├── output003.txt │ │ │ ├── output004.txt │ │ │ └── output005.txt │ ├── usernames-changes │ │ ├── README.md │ │ ├── problem.png │ │ ├── solution.py │ │ ├── stub.cc │ │ ├── stub.py │ │ └── test-cases │ │ │ ├── input000.txt │ │ │ ├── input001.txt │ │ │ ├── input002.txt │ │ │ ├── output000.txt │ │ │ ├── output001.txt │ │ │ └── output002.txt │ └── vowel-substring │ │ ├── README.md │ │ ├── problem.png │ │ ├── solution.py │ │ ├── stub.cc │ │ ├── stub.py │ │ └── test-cases │ │ ├── input000.txt │ │ ├── input001.txt │ │ ├── input002.txt │ │ ├── input005.txt │ │ ├── input011.txt │ │ ├── input012.txt │ │ ├── output000.txt │ │ ├── output001.txt │ │ ├── output002.txt │ │ ├── output005.txt │ │ ├── output011.txt │ │ └── output012.txt └── problem-solving-intermediate │ ├── bitwise-and │ ├── README.md │ ├── problem.png │ ├── solution.py │ ├── stub.cc │ ├── stub.py │ └── test-cases │ │ ├── input000.txt │ │ ├── input001.txt │ │ ├── input002.txt │ │ ├── input004.txt │ │ ├── input005.txt │ │ ├── input006.txt │ │ ├── output000.txt │ │ ├── output001.txt │ │ ├── output002.txt │ │ ├── output004.txt │ │ ├── output005.txt │ │ └── output006.txt │ ├── equalizing-array-elements │ ├── README.md │ ├── problem.png │ ├── solution.py │ ├── stub.cc │ ├── stub.py │ └── test-cases │ │ ├── input000.txt │ │ ├── input001.txt │ │ ├── input002.txt │ │ ├── input004.txt │ │ ├── output000.txt │ │ ├── output001.txt │ │ ├── output002.txt │ │ └── output004.txt │ ├── file-renaming │ ├── README.md │ ├── problem.png │ ├── solution.py │ ├── stub.cc │ ├── stub.py │ └── test-cases │ │ ├── input000.txt │ │ ├── input001.txt │ │ ├── input002.txt │ │ ├── input003.txt │ │ ├── input004.txt │ │ ├── input005.txt │ │ ├── input006.txt │ │ ├── input007.txt │ │ ├── output000.txt │ │ ├── output001.txt │ │ ├── output002.txt │ │ ├── output003.txt │ │ ├── output004.txt │ │ ├── output005.txt │ │ ├── output006.txt │ │ └── output007.txt │ ├── hotel-construction │ ├── README.md │ ├── problem.png │ ├── solution.py │ ├── stub.cc │ ├── stub.py │ └── test-cases │ │ ├── input000.txt │ │ ├── input001.txt │ │ ├── input002.txt │ │ ├── input003.txt │ │ ├── input004.txt │ │ ├── input005.txt │ │ ├── input006.txt │ │ ├── input007.txt │ │ ├── input008.txt │ │ ├── input009.txt │ │ ├── input010.txt │ │ ├── input011.txt │ │ ├── input012.txt │ │ ├── input013.txt │ │ ├── input014.txt │ │ ├── output000.txt │ │ ├── output001.txt │ │ ├── output002.txt │ │ ├── output003.txt │ │ ├── output004.txt │ │ ├── output005.txt │ │ ├── output006.txt │ │ ├── output007.txt │ │ ├── output008.txt │ │ ├── output009.txt │ │ ├── output010.txt │ │ ├── output011.txt │ │ ├── output012.txt │ │ ├── output013.txt │ │ └── output014.txt │ ├── largest-area │ ├── README.md │ ├── problem.png │ ├── solution.py │ ├── stub.cc │ ├── stub.py │ └── test-cases │ │ ├── input000.txt │ │ ├── input001.txt │ │ ├── input002.txt │ │ ├── input003.txt │ │ ├── input004.txt │ │ ├── input005.txt │ │ ├── input007.txt │ │ ├── output000.txt │ │ ├── output001.txt │ │ ├── output002.txt │ │ ├── output003.txt │ │ ├── output004.txt │ │ ├── output005.txt │ │ └── output007.txt │ ├── maximum-subarray-value │ ├── README.md │ ├── problem.png │ ├── solution.py │ ├── stub.cc │ ├── stub.py │ └── test-cases │ │ ├── input000.txt │ │ ├── input001.txt │ │ ├── input002.txt │ │ ├── input003.txt │ │ ├── input004.txt │ │ ├── input005.txt │ │ ├── input006.txt │ │ ├── input007.txt │ │ ├── input008.txt │ │ ├── input009.txt │ │ ├── output000.txt │ │ ├── output001.txt │ │ ├── output002.txt │ │ ├── output003.txt │ │ ├── output004.txt │ │ ├── output005.txt │ │ ├── output006.txt │ │ ├── output007.txt │ │ ├── output008.txt │ │ └── output009.txt │ ├── nice-teams │ ├── README.md │ ├── problem.png │ ├── solution.py │ ├── stub.py │ └── test-cases │ │ ├── input000.txt │ │ ├── input001.txt │ │ ├── input002.txt │ │ ├── input003.txt │ │ ├── input004.txt │ │ ├── input005.txt │ │ ├── input006.txt │ │ ├── output000.txt │ │ ├── output001.txt │ │ ├── output002.txt │ │ ├── output003.txt │ │ ├── output004.txt │ │ ├── output005.txt │ │ └── output006.txt │ ├── sorted-sums │ ├── README.md │ ├── problem.png │ ├── solution.py │ ├── stub.cc │ ├── stub.py │ └── test-cases │ │ ├── input000.txt │ │ ├── input001.txt │ │ ├── input002.txt │ │ ├── input003.txt │ │ ├── input004.txt │ │ ├── input005.txt │ │ ├── input006.txt │ │ ├── output000.txt │ │ ├── output001.txt │ │ ├── output002.txt │ │ ├── output003.txt │ │ ├── output004.txt │ │ ├── output005.txt │ │ └── output006.txt │ ├── task-of-pairing │ ├── README.md │ ├── problem.png │ ├── solution.py │ ├── stub.py │ └── test-cases │ │ ├── input000.txt │ │ ├── input001.txt │ │ ├── input002.txt │ │ ├── output000.txt │ │ ├── output001.txt │ │ └── output002.txt │ └── user-friendly-password-system │ ├── README.md │ ├── problem.png │ ├── solution.py │ ├── stub.cc │ ├── stub.py │ └── test-cases │ ├── input000.txt │ ├── input001.txt │ ├── input002.txt │ ├── input003.txt │ ├── input004.txt │ ├── output000.txt │ ├── output001.txt │ ├── output002.txt │ ├── output003.txt │ └── output004.txt └── challenges ├── a-very-big-sum.py ├── acm-icpc-team.py ├── angry-professor.py ├── append-and-delete.py ├── apple-and-orange.py ├── beautiful-days-at-the-movies.py ├── between-two-sets.py ├── birthday-cake-candles.py ├── bon-appetit.py ├── breaking-best-and-worst-records.py ├── cats-and-a-mouse.py ├── circular-array-rotation.py ├── climbing-the-leaderboard.py ├── compare-the-triplets.py ├── counting-valleys.py ├── cut-the-sticks.py ├── day-of-the-programmer.py ├── designer-pdf-viewer.py ├── diagonal-difference.py ├── divisible-sum-pairs.py ├── drawing-book.py ├── electronics-shop.py ├── equality-in-a-array.py ├── extra-long-factorials.py ├── find-digits.py ├── frog-in-maze.py ├── grading.py ├── jumping-on-the-clouds-revisited.py ├── jumping-on-the-clouds.py ├── kangaroo.py ├── library-fine.py ├── magic-square-forming.py ├── migratory-birds.py ├── mini-max-sum.py ├── non-divisible-subset.py ├── organizing-containers-of-balls.py ├── permutation-equation.py ├── picking-numbers.py ├── plus-minus.py ├── queens-attack-2.py ├── repeated-string.py ├── save-the-prisoner.py ├── sherlock-and-cost.py ├── sherlock-and-squares.py ├── simple-array-sum.py ├── sock-merchant.py ├── staircase.py ├── strange-advertising.py ├── taum-and-bday.py ├── the-birthday-bar.py ├── the-hurdle-race.py ├── time-conversion.py └── utopian-tree.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/README.md -------------------------------------------------------------------------------- /certificates/problem-solving-basic/active-traders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/active-traders/README.md -------------------------------------------------------------------------------- /certificates/problem-solving-basic/active-traders/problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/active-traders/problem.png -------------------------------------------------------------------------------- /certificates/problem-solving-basic/active-traders/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/active-traders/solution.py -------------------------------------------------------------------------------- /certificates/problem-solving-basic/active-traders/stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/active-traders/stub.cc -------------------------------------------------------------------------------- /certificates/problem-solving-basic/active-traders/stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/active-traders/stub.py -------------------------------------------------------------------------------- /certificates/problem-solving-basic/active-traders/test-cases/input000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/active-traders/test-cases/input000.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/active-traders/test-cases/input001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/active-traders/test-cases/input001.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/active-traders/test-cases/input002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/active-traders/test-cases/input002.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/active-traders/test-cases/input003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/active-traders/test-cases/input003.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/active-traders/test-cases/input004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/active-traders/test-cases/input004.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/active-traders/test-cases/input005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/active-traders/test-cases/input005.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/active-traders/test-cases/input006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/active-traders/test-cases/input006.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/active-traders/test-cases/input007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/active-traders/test-cases/input007.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/active-traders/test-cases/input009.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/active-traders/test-cases/input009.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/active-traders/test-cases/output000.txt: -------------------------------------------------------------------------------- 1 | Alpha 2 | Beta 3 | Omega 4 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/active-traders/test-cases/output001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/active-traders/test-cases/output001.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/active-traders/test-cases/output002.txt: -------------------------------------------------------------------------------- 1 | And 2 | Goes 3 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/active-traders/test-cases/output003.txt: -------------------------------------------------------------------------------- 1 | Bey 2 | Ddtlcouegmdbyfwu 3 | Ppuvhifnuap 4 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/active-traders/test-cases/output004.txt: -------------------------------------------------------------------------------- 1 | Bfeo 2 | Pnnpmud 3 | Wdswxxrx 4 | Xjgwxtrxi 5 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/active-traders/test-cases/output005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/active-traders/test-cases/output005.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/active-traders/test-cases/output006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/active-traders/test-cases/output006.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/active-traders/test-cases/output007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/active-traders/test-cases/output007.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/active-traders/test-cases/output009.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/active-traders/test-cases/output009.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/balanced-system-files-partition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/balanced-system-files-partition/README.md -------------------------------------------------------------------------------- /certificates/problem-solving-basic/balanced-system-files-partition/problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/balanced-system-files-partition/problem.png -------------------------------------------------------------------------------- /certificates/problem-solving-basic/balanced-system-files-partition/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/balanced-system-files-partition/solution.py -------------------------------------------------------------------------------- /certificates/problem-solving-basic/balanced-system-files-partition/stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/balanced-system-files-partition/stub.cc -------------------------------------------------------------------------------- /certificates/problem-solving-basic/balanced-system-files-partition/stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/balanced-system-files-partition/stub.py -------------------------------------------------------------------------------- /certificates/problem-solving-basic/balanced-system-files-partition/test-cases/input000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/balanced-system-files-partition/test-cases/input000.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/balanced-system-files-partition/test-cases/input001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/balanced-system-files-partition/test-cases/input001.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/balanced-system-files-partition/test-cases/input002.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -1 3 | 0 4 | 2 5 | 20 6 | 100 7 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/balanced-system-files-partition/test-cases/input003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/balanced-system-files-partition/test-cases/input003.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/balanced-system-files-partition/test-cases/input004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/balanced-system-files-partition/test-cases/input004.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/balanced-system-files-partition/test-cases/input005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/balanced-system-files-partition/test-cases/input005.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/balanced-system-files-partition/test-cases/output000.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/balanced-system-files-partition/test-cases/output001.txt: -------------------------------------------------------------------------------- 1 | 19 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/balanced-system-files-partition/test-cases/output002.txt: -------------------------------------------------------------------------------- 1 | 80 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/balanced-system-files-partition/test-cases/output003.txt: -------------------------------------------------------------------------------- 1 | 8216 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/balanced-system-files-partition/test-cases/output004.txt: -------------------------------------------------------------------------------- 1 | 4182 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/balanced-system-files-partition/test-cases/output005.txt: -------------------------------------------------------------------------------- 1 | 5203 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/longest-subarray/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/longest-subarray/README.md -------------------------------------------------------------------------------- /certificates/problem-solving-basic/longest-subarray/problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/longest-subarray/problem.png -------------------------------------------------------------------------------- /certificates/problem-solving-basic/longest-subarray/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/longest-subarray/solution.py -------------------------------------------------------------------------------- /certificates/problem-solving-basic/longest-subarray/stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/longest-subarray/stub.cc -------------------------------------------------------------------------------- /certificates/problem-solving-basic/longest-subarray/stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/longest-subarray/stub.py -------------------------------------------------------------------------------- /certificates/problem-solving-basic/longest-subarray/test-cases/input000.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 1 3 | 2 4 | 3 5 | 4 6 | 5 7 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/longest-subarray/test-cases/input001.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 2 3 | 2 4 | 1 5 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/longest-subarray/test-cases/input002.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 295331535 3 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/longest-subarray/test-cases/input003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/longest-subarray/test-cases/input003.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/longest-subarray/test-cases/input004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/longest-subarray/test-cases/input004.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/longest-subarray/test-cases/input005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/longest-subarray/test-cases/input005.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/longest-subarray/test-cases/input006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/longest-subarray/test-cases/input006.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/longest-subarray/test-cases/input007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/longest-subarray/test-cases/input007.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/longest-subarray/test-cases/output000.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/longest-subarray/test-cases/output001.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/longest-subarray/test-cases/output002.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/longest-subarray/test-cases/output003.txt: -------------------------------------------------------------------------------- 1 | 31 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/longest-subarray/test-cases/output004.txt: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/longest-subarray/test-cases/output005.txt: -------------------------------------------------------------------------------- 1 | 13 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/longest-subarray/test-cases/output006.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/longest-subarray/test-cases/output007.txt: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/maximum-cost-of-laptop-count/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/maximum-cost-of-laptop-count/README.md -------------------------------------------------------------------------------- /certificates/problem-solving-basic/maximum-cost-of-laptop-count/problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/maximum-cost-of-laptop-count/problem.png -------------------------------------------------------------------------------- /certificates/problem-solving-basic/maximum-cost-of-laptop-count/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/maximum-cost-of-laptop-count/solution.py -------------------------------------------------------------------------------- /certificates/problem-solving-basic/maximum-cost-of-laptop-count/stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/maximum-cost-of-laptop-count/stub.py -------------------------------------------------------------------------------- /certificates/problem-solving-basic/maximum-cost-of-laptop-count/test-cases/input000.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 1 4 | illegal 5 | 1 6 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/maximum-cost-of-laptop-count/test-cases/input001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/maximum-cost-of-laptop-count/test-cases/input001.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/maximum-cost-of-laptop-count/test-cases/input002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/maximum-cost-of-laptop-count/test-cases/input002.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/maximum-cost-of-laptop-count/test-cases/output000.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/maximum-cost-of-laptop-count/test-cases/output001.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/maximum-cost-of-laptop-count/test-cases/output002.txt: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/nearly-similar-rectangles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/nearly-similar-rectangles/README.md -------------------------------------------------------------------------------- /certificates/problem-solving-basic/nearly-similar-rectangles/problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/nearly-similar-rectangles/problem.png -------------------------------------------------------------------------------- /certificates/problem-solving-basic/nearly-similar-rectangles/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/nearly-similar-rectangles/solution.py -------------------------------------------------------------------------------- /certificates/problem-solving-basic/nearly-similar-rectangles/stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/nearly-similar-rectangles/stub.cc -------------------------------------------------------------------------------- /certificates/problem-solving-basic/nearly-similar-rectangles/stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/nearly-similar-rectangles/stub.py -------------------------------------------------------------------------------- /certificates/problem-solving-basic/nearly-similar-rectangles/test-cases/input000.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 2 3 | 4 8 4 | 15 30 5 | 25 50 6 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/nearly-similar-rectangles/test-cases/input001.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 2 3 | 2 1 4 | 10 7 5 | 9 5 6 | 6 9 7 | 7 3 8 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/nearly-similar-rectangles/test-cases/input002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/nearly-similar-rectangles/test-cases/input002.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/nearly-similar-rectangles/test-cases/input003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/nearly-similar-rectangles/test-cases/input003.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/nearly-similar-rectangles/test-cases/input004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/nearly-similar-rectangles/test-cases/input004.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/nearly-similar-rectangles/test-cases/input005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/nearly-similar-rectangles/test-cases/input005.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/nearly-similar-rectangles/test-cases/input006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/nearly-similar-rectangles/test-cases/input006.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/nearly-similar-rectangles/test-cases/output000.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/nearly-similar-rectangles/test-cases/output001.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/nearly-similar-rectangles/test-cases/output002.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/nearly-similar-rectangles/test-cases/output003.txt: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/nearly-similar-rectangles/test-cases/output004.txt: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/nearly-similar-rectangles/test-cases/output005.txt: -------------------------------------------------------------------------------- 1 | 24 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/nearly-similar-rectangles/test-cases/output006.txt: -------------------------------------------------------------------------------- 1 | 13 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/parallel-processing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/parallel-processing/README.md -------------------------------------------------------------------------------- /certificates/problem-solving-basic/parallel-processing/problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/parallel-processing/problem.png -------------------------------------------------------------------------------- /certificates/problem-solving-basic/parallel-processing/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/parallel-processing/solution.py -------------------------------------------------------------------------------- /certificates/problem-solving-basic/parallel-processing/stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/parallel-processing/stub.cc -------------------------------------------------------------------------------- /certificates/problem-solving-basic/parallel-processing/stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/parallel-processing/stub.py -------------------------------------------------------------------------------- /certificates/problem-solving-basic/parallel-processing/test-cases/input000.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 5 3 | 3 4 | 1 5 | 5 6 | 5 7 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/parallel-processing/test-cases/input001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/parallel-processing/test-cases/input001.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/parallel-processing/test-cases/input002.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 130291875 3 | 474356040 4 | 1 5 | 8 6 | 5 7 | 3 8 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/parallel-processing/test-cases/input003.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 247319702 3 | 7 4 | 6 5 | 7 6 | 9 7 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/parallel-processing/test-cases/input004.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 577998282 3 | 2 4 | 4 5 | 3 6 | 1 7 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/parallel-processing/test-cases/input005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/parallel-processing/test-cases/input005.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/parallel-processing/test-cases/input006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/parallel-processing/test-cases/input006.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/parallel-processing/test-cases/input007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/parallel-processing/test-cases/input007.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/parallel-processing/test-cases/input008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/parallel-processing/test-cases/input008.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/parallel-processing/test-cases/output000.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/parallel-processing/test-cases/output001.txt: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/parallel-processing/test-cases/output002.txt: -------------------------------------------------------------------------------- 1 | 120929592 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/parallel-processing/test-cases/output003.txt: -------------------------------------------------------------------------------- 1 | 35331393 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/parallel-processing/test-cases/output004.txt: -------------------------------------------------------------------------------- 1 | 192666100 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/parallel-processing/test-cases/output005.txt: -------------------------------------------------------------------------------- 1 | 236795653013 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/parallel-processing/test-cases/output006.txt: -------------------------------------------------------------------------------- 1 | 87576202724 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/parallel-processing/test-cases/output007.txt: -------------------------------------------------------------------------------- 1 | 70953005713 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/parallel-processing/test-cases/output008.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/password-decryption/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/password-decryption/README.md -------------------------------------------------------------------------------- /certificates/problem-solving-basic/password-decryption/problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/password-decryption/problem.png -------------------------------------------------------------------------------- /certificates/problem-solving-basic/password-decryption/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/password-decryption/solution.py -------------------------------------------------------------------------------- /certificates/problem-solving-basic/password-decryption/stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/password-decryption/stub.py -------------------------------------------------------------------------------- /certificates/problem-solving-basic/password-decryption/test-cases/input000.txt: -------------------------------------------------------------------------------- 1 | 51Pa*0Lp*0e 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/password-decryption/test-cases/input001.txt: -------------------------------------------------------------------------------- 1 | pTo*Ta*O 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/password-decryption/test-cases/input002.txt: -------------------------------------------------------------------------------- 1 | 1Bl*Kg*u0 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/password-decryption/test-cases/input003.txt: -------------------------------------------------------------------------------- 1 | 6UDTyn0Hm*BqBp*ur 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/password-decryption/test-cases/input004.txt: -------------------------------------------------------------------------------- 1 | 487RESx*Fpd0Xukr0m0Du 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/password-decryption/test-cases/input005.txt: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/password-decryption/test-cases/input008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/password-decryption/test-cases/input008.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/password-decryption/test-cases/output000.txt: -------------------------------------------------------------------------------- 1 | aP1pL5e 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/password-decryption/test-cases/output001.txt: -------------------------------------------------------------------------------- 1 | poTaTO 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/password-decryption/test-cases/output002.txt: -------------------------------------------------------------------------------- 1 | lBgKu1 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/password-decryption/test-cases/output003.txt: -------------------------------------------------------------------------------- 1 | UDTyn6mHBqpBur 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/password-decryption/test-cases/output004.txt: -------------------------------------------------------------------------------- 1 | RExSFpd7Xukr8m4Du 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/password-decryption/test-cases/output005.txt: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/password-decryption/test-cases/output008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/password-decryption/test-cases/output008.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/road-repair/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/road-repair/README.md -------------------------------------------------------------------------------- /certificates/problem-solving-basic/road-repair/problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/road-repair/problem.png -------------------------------------------------------------------------------- /certificates/problem-solving-basic/road-repair/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/road-repair/solution.py -------------------------------------------------------------------------------- /certificates/problem-solving-basic/road-repair/stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/road-repair/stub.cc -------------------------------------------------------------------------------- /certificates/problem-solving-basic/road-repair/stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/road-repair/stub.py -------------------------------------------------------------------------------- /certificates/problem-solving-basic/road-repair/test-cases/input000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/road-repair/test-cases/input000.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/road-repair/test-cases/input001.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 5 3 | 1 4 | 4 5 | 2 6 | 4 7 | 4 8 | 7 9 | 9 10 | 10 11 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/road-repair/test-cases/input002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/road-repair/test-cases/input002.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/road-repair/test-cases/input003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/road-repair/test-cases/input003.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/road-repair/test-cases/output000.txt: -------------------------------------------------------------------------------- 1 | 17 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/road-repair/test-cases/output001.txt: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/road-repair/test-cases/output002.txt: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/road-repair/test-cases/output003.txt: -------------------------------------------------------------------------------- 1 | 26833 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/string-anagram/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/string-anagram/README.md -------------------------------------------------------------------------------- /certificates/problem-solving-basic/string-anagram/problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/string-anagram/problem.png -------------------------------------------------------------------------------- /certificates/problem-solving-basic/string-anagram/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/string-anagram/solution.py -------------------------------------------------------------------------------- /certificates/problem-solving-basic/string-anagram/stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/string-anagram/stub.cc -------------------------------------------------------------------------------- /certificates/problem-solving-basic/string-anagram/stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/string-anagram/stub.py -------------------------------------------------------------------------------- /certificates/problem-solving-basic/string-anagram/test-cases/input000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/string-anagram/test-cases/input000.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/string-anagram/test-cases/input001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/string-anagram/test-cases/input001.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/string-anagram/test-cases/input002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/string-anagram/test-cases/input002.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/string-anagram/test-cases/input003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/string-anagram/test-cases/input003.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/string-anagram/test-cases/output000.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 2 3 | 0 4 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/string-anagram/test-cases/output001.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 1 3 | 2 4 | 3 5 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/string-anagram/test-cases/output002.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 0 3 | 0 4 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/string-anagram/test-cases/output003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/string-anagram/test-cases/output003.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/subarray-sums/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/subarray-sums/README.md -------------------------------------------------------------------------------- /certificates/problem-solving-basic/subarray-sums/problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/subarray-sums/problem.png -------------------------------------------------------------------------------- /certificates/problem-solving-basic/subarray-sums/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/subarray-sums/solution.py -------------------------------------------------------------------------------- /certificates/problem-solving-basic/subarray-sums/stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/subarray-sums/stub.cc -------------------------------------------------------------------------------- /certificates/problem-solving-basic/subarray-sums/stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/subarray-sums/stub.py -------------------------------------------------------------------------------- /certificates/problem-solving-basic/subarray-sums/test-cases/input000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/subarray-sums/test-cases/input000.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/subarray-sums/test-cases/input001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/subarray-sums/test-cases/input001.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/subarray-sums/test-cases/input002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/subarray-sums/test-cases/input002.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/subarray-sums/test-cases/input003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/subarray-sums/test-cases/input003.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/subarray-sums/test-cases/input004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/subarray-sums/test-cases/input004.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/subarray-sums/test-cases/output000.txt: -------------------------------------------------------------------------------- 1 | 15 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/subarray-sums/test-cases/output001.txt: -------------------------------------------------------------------------------- 1 | 20 2 | 5 3 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/subarray-sums/test-cases/output002.txt: -------------------------------------------------------------------------------- 1 | -5 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/subarray-sums/test-cases/output003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/subarray-sums/test-cases/output003.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/subarray-sums/test-cases/output004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/subarray-sums/test-cases/output004.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/unexpected-demand/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/unexpected-demand/README.md -------------------------------------------------------------------------------- /certificates/problem-solving-basic/unexpected-demand/problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/unexpected-demand/problem.png -------------------------------------------------------------------------------- /certificates/problem-solving-basic/unexpected-demand/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/unexpected-demand/solution.py -------------------------------------------------------------------------------- /certificates/problem-solving-basic/unexpected-demand/stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/unexpected-demand/stub.cc -------------------------------------------------------------------------------- /certificates/problem-solving-basic/unexpected-demand/stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/unexpected-demand/stub.py -------------------------------------------------------------------------------- /certificates/problem-solving-basic/unexpected-demand/test-cases/input000.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 10 3 | 30 4 | 40 5 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/unexpected-demand/test-cases/input001.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 5 3 | 4 4 | 6 5 | 3 6 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/unexpected-demand/test-cases/input002.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 21 3 | 24 4 | 83178701 5 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/unexpected-demand/test-cases/input003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/unexpected-demand/test-cases/input003.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/unexpected-demand/test-cases/input004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/unexpected-demand/test-cases/input004.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/unexpected-demand/test-cases/input005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/unexpected-demand/test-cases/input005.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/unexpected-demand/test-cases/output000.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/unexpected-demand/test-cases/output001.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/unexpected-demand/test-cases/output002.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/unexpected-demand/test-cases/output003.txt: -------------------------------------------------------------------------------- 1 | 94 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/unexpected-demand/test-cases/output004.txt: -------------------------------------------------------------------------------- 1 | 392 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/unexpected-demand/test-cases/output005.txt: -------------------------------------------------------------------------------- 1 | 271 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/usernames-changes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/usernames-changes/README.md -------------------------------------------------------------------------------- /certificates/problem-solving-basic/usernames-changes/problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/usernames-changes/problem.png -------------------------------------------------------------------------------- /certificates/problem-solving-basic/usernames-changes/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/usernames-changes/solution.py -------------------------------------------------------------------------------- /certificates/problem-solving-basic/usernames-changes/stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/usernames-changes/stub.cc -------------------------------------------------------------------------------- /certificates/problem-solving-basic/usernames-changes/stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/usernames-changes/stub.py -------------------------------------------------------------------------------- /certificates/problem-solving-basic/usernames-changes/test-cases/input000.txt: -------------------------------------------------------------------------------- 1 | 1 2 | hydra 3 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/usernames-changes/test-cases/input001.txt: -------------------------------------------------------------------------------- 1 | 3 2 | foo 3 | bar 4 | baz 5 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/usernames-changes/test-cases/input002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/usernames-changes/test-cases/input002.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/usernames-changes/test-cases/output000.txt: -------------------------------------------------------------------------------- 1 | YES 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/usernames-changes/test-cases/output001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/usernames-changes/test-cases/output001.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/usernames-changes/test-cases/output002.txt: -------------------------------------------------------------------------------- 1 | NO 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/vowel-substring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/vowel-substring/README.md -------------------------------------------------------------------------------- /certificates/problem-solving-basic/vowel-substring/problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/vowel-substring/problem.png -------------------------------------------------------------------------------- /certificates/problem-solving-basic/vowel-substring/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/vowel-substring/solution.py -------------------------------------------------------------------------------- /certificates/problem-solving-basic/vowel-substring/stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/vowel-substring/stub.cc -------------------------------------------------------------------------------- /certificates/problem-solving-basic/vowel-substring/stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/vowel-substring/stub.py -------------------------------------------------------------------------------- /certificates/problem-solving-basic/vowel-substring/test-cases/input000.txt: -------------------------------------------------------------------------------- 1 | azerdii 2 | 5 3 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/vowel-substring/test-cases/input001.txt: -------------------------------------------------------------------------------- 1 | qwdftr 2 | 2 3 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/vowel-substring/test-cases/input002.txt: -------------------------------------------------------------------------------- 1 | eiuaooo 2 | 4 3 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/vowel-substring/test-cases/input005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/vowel-substring/test-cases/input005.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/vowel-substring/test-cases/input011.txt: -------------------------------------------------------------------------------- 1 | aaaabbb 2 | 5 3 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/vowel-substring/test-cases/input012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/vowel-substring/test-cases/input012.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/vowel-substring/test-cases/output000.txt: -------------------------------------------------------------------------------- 1 | erdii 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/vowel-substring/test-cases/output001.txt: -------------------------------------------------------------------------------- 1 | Not found! 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/vowel-substring/test-cases/output002.txt: -------------------------------------------------------------------------------- 1 | eiua 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/vowel-substring/test-cases/output005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-basic/vowel-substring/test-cases/output005.txt -------------------------------------------------------------------------------- /certificates/problem-solving-basic/vowel-substring/test-cases/output011.txt: -------------------------------------------------------------------------------- 1 | aaaab 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-basic/vowel-substring/test-cases/output012.txt: -------------------------------------------------------------------------------- 1 | aiouapqw 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/bitwise-and/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/bitwise-and/README.md -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/bitwise-and/problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/bitwise-and/problem.png -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/bitwise-and/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/bitwise-and/solution.py -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/bitwise-and/stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/bitwise-and/stub.cc -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/bitwise-and/stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/bitwise-and/stub.py -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/bitwise-and/test-cases/input000.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 1 3 | 2 4 | 1 5 | 3 6 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/bitwise-and/test-cases/input001.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 0 3 | 2 4 | 4 5 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/bitwise-and/test-cases/input002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/bitwise-and/test-cases/input002.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/bitwise-and/test-cases/input004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/bitwise-and/test-cases/input004.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/bitwise-and/test-cases/input005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/bitwise-and/test-cases/input005.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/bitwise-and/test-cases/input006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/bitwise-and/test-cases/input006.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/bitwise-and/test-cases/output000.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/bitwise-and/test-cases/output001.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/bitwise-and/test-cases/output002.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/bitwise-and/test-cases/output004.txt: -------------------------------------------------------------------------------- 1 | 3186 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/bitwise-and/test-cases/output005.txt: -------------------------------------------------------------------------------- 1 | 171799 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/bitwise-and/test-cases/output006.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/equalizing-array-elements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/equalizing-array-elements/README.md -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/equalizing-array-elements/problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/equalizing-array-elements/problem.png -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/equalizing-array-elements/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/equalizing-array-elements/solution.py -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/equalizing-array-elements/stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/equalizing-array-elements/stub.cc -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/equalizing-array-elements/stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/equalizing-array-elements/stub.py -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/equalizing-array-elements/test-cases/input000.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 64 3 | 30 4 | 25 5 | 33 6 | 2 7 | 2 8 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/equalizing-array-elements/test-cases/input001.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 1 3 | 2 4 | 3 5 | 4 6 | 4 7 | 3 8 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/equalizing-array-elements/test-cases/input002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/equalizing-array-elements/test-cases/input002.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/equalizing-array-elements/test-cases/input004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/equalizing-array-elements/test-cases/input004.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/equalizing-array-elements/test-cases/output000.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/equalizing-array-elements/test-cases/output001.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/equalizing-array-elements/test-cases/output002.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/equalizing-array-elements/test-cases/output004.txt: -------------------------------------------------------------------------------- 1 | 1065 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/file-renaming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/file-renaming/README.md -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/file-renaming/problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/file-renaming/problem.png -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/file-renaming/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/file-renaming/solution.py -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/file-renaming/stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/file-renaming/stub.cc -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/file-renaming/stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/file-renaming/stub.py -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/file-renaming/test-cases/input000.txt: -------------------------------------------------------------------------------- 1 | ccc 2 | cccc 3 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/file-renaming/test-cases/input001.txt: -------------------------------------------------------------------------------- 1 | abc 2 | abba 3 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/file-renaming/test-cases/input002.txt: -------------------------------------------------------------------------------- 1 | abc 2 | aaabbbccc 3 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/file-renaming/test-cases/input003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/file-renaming/test-cases/input003.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/file-renaming/test-cases/input004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/file-renaming/test-cases/input004.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/file-renaming/test-cases/input005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/file-renaming/test-cases/input005.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/file-renaming/test-cases/input006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/file-renaming/test-cases/input006.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/file-renaming/test-cases/input007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/file-renaming/test-cases/input007.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/file-renaming/test-cases/output000.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/file-renaming/test-cases/output001.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/file-renaming/test-cases/output002.txt: -------------------------------------------------------------------------------- 1 | 27 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/file-renaming/test-cases/output003.txt: -------------------------------------------------------------------------------- 1 | 3174 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/file-renaming/test-cases/output004.txt: -------------------------------------------------------------------------------- 1 | 6060 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/file-renaming/test-cases/output005.txt: -------------------------------------------------------------------------------- 1 | 6610 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/file-renaming/test-cases/output006.txt: -------------------------------------------------------------------------------- 1 | 1994 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/file-renaming/test-cases/output007.txt: -------------------------------------------------------------------------------- 1 | 339 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/hotel-construction/README.md -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/hotel-construction/problem.png -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/hotel-construction/solution.py -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/hotel-construction/stub.cc -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/hotel-construction/stub.py -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/test-cases/input000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/hotel-construction/test-cases/input000.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/test-cases/input001.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 2 3 | 1 2 4 | 2 3 5 | 3 4 6 | 4 5 7 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/test-cases/input002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/hotel-construction/test-cases/input002.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/test-cases/input003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/hotel-construction/test-cases/input003.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/test-cases/input004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/hotel-construction/test-cases/input004.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/test-cases/input005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/hotel-construction/test-cases/input005.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/test-cases/input006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/hotel-construction/test-cases/input006.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/test-cases/input007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/hotel-construction/test-cases/input007.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/test-cases/input008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/hotel-construction/test-cases/input008.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/test-cases/input009.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/hotel-construction/test-cases/input009.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/test-cases/input010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/hotel-construction/test-cases/input010.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/test-cases/input011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/hotel-construction/test-cases/input011.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/test-cases/input012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/hotel-construction/test-cases/input012.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/test-cases/input013.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/hotel-construction/test-cases/input013.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/test-cases/input014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/hotel-construction/test-cases/input014.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/test-cases/output000.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/test-cases/output001.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/test-cases/output002.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/test-cases/output003.txt: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/test-cases/output004.txt: -------------------------------------------------------------------------------- 1 | 66 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/test-cases/output005.txt: -------------------------------------------------------------------------------- 1 | 66 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/test-cases/output006.txt: -------------------------------------------------------------------------------- 1 | 560 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/test-cases/output007.txt: -------------------------------------------------------------------------------- 1 | 40 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/test-cases/output008.txt: -------------------------------------------------------------------------------- 1 | 41 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/test-cases/output009.txt: -------------------------------------------------------------------------------- 1 | 3296 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/test-cases/output010.txt: -------------------------------------------------------------------------------- 1 | 2981 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/test-cases/output011.txt: -------------------------------------------------------------------------------- 1 | 3654 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/test-cases/output012.txt: -------------------------------------------------------------------------------- 1 | 371 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/test-cases/output013.txt: -------------------------------------------------------------------------------- 1 | 166 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/hotel-construction/test-cases/output014.txt: -------------------------------------------------------------------------------- 1 | 44 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/largest-area/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/largest-area/README.md -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/largest-area/problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/largest-area/problem.png -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/largest-area/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/largest-area/solution.py -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/largest-area/stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/largest-area/stub.cc -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/largest-area/stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/largest-area/stub.py -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/largest-area/test-cases/input000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/largest-area/test-cases/input000.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/largest-area/test-cases/input001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/largest-area/test-cases/input001.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/largest-area/test-cases/input002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/largest-area/test-cases/input002.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/largest-area/test-cases/input003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/largest-area/test-cases/input003.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/largest-area/test-cases/input004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/largest-area/test-cases/input004.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/largest-area/test-cases/input005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/largest-area/test-cases/input005.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/largest-area/test-cases/input007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/largest-area/test-cases/input007.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/largest-area/test-cases/output000.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 1 3 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/largest-area/test-cases/output001.txt: -------------------------------------------------------------------------------- 1 | 9 2 | 6 3 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/largest-area/test-cases/output002.txt: -------------------------------------------------------------------------------- 1 | 12 2 | 9 3 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/largest-area/test-cases/output003.txt: -------------------------------------------------------------------------------- 1 | 8 2 | 8 3 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/largest-area/test-cases/output004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/largest-area/test-cases/output004.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/largest-area/test-cases/output005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/largest-area/test-cases/output005.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/largest-area/test-cases/output007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/largest-area/test-cases/output007.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/maximum-subarray-value/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/maximum-subarray-value/README.md -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/maximum-subarray-value/problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/maximum-subarray-value/problem.png -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/maximum-subarray-value/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/maximum-subarray-value/solution.py -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/maximum-subarray-value/stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/maximum-subarray-value/stub.cc -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/maximum-subarray-value/stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/maximum-subarray-value/stub.py -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/maximum-subarray-value/test-cases/input000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/maximum-subarray-value/test-cases/input000.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/maximum-subarray-value/test-cases/input001.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -1 3 | 2 4 | 3 5 | 4 6 | -5 7 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/maximum-subarray-value/test-cases/input002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/maximum-subarray-value/test-cases/input002.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/maximum-subarray-value/test-cases/input003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/maximum-subarray-value/test-cases/input003.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/maximum-subarray-value/test-cases/input004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/maximum-subarray-value/test-cases/input004.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/maximum-subarray-value/test-cases/input005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/maximum-subarray-value/test-cases/input005.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/maximum-subarray-value/test-cases/input006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/maximum-subarray-value/test-cases/input006.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/maximum-subarray-value/test-cases/input007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/maximum-subarray-value/test-cases/input007.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/maximum-subarray-value/test-cases/input008.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -5 3 | -3 4 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/maximum-subarray-value/test-cases/input009.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/maximum-subarray-value/test-cases/input009.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/maximum-subarray-value/test-cases/output000.txt: -------------------------------------------------------------------------------- 1 | 25 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/maximum-subarray-value/test-cases/output001.txt: -------------------------------------------------------------------------------- 1 | 81 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/maximum-subarray-value/test-cases/output002.txt: -------------------------------------------------------------------------------- 1 | 81 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/maximum-subarray-value/test-cases/output003.txt: -------------------------------------------------------------------------------- 1 | 361 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/maximum-subarray-value/test-cases/output004.txt: -------------------------------------------------------------------------------- 1 | 361 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/maximum-subarray-value/test-cases/output005.txt: -------------------------------------------------------------------------------- 1 | 45158400 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/maximum-subarray-value/test-cases/output006.txt: -------------------------------------------------------------------------------- 1 | 21150801 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/maximum-subarray-value/test-cases/output007.txt: -------------------------------------------------------------------------------- 1 | 189695529 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/maximum-subarray-value/test-cases/output008.txt: -------------------------------------------------------------------------------- 1 | 25 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/maximum-subarray-value/test-cases/output009.txt: -------------------------------------------------------------------------------- 1 | 34@\ -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/nice-teams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/nice-teams/README.md -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/nice-teams/problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/nice-teams/problem.png -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/nice-teams/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/nice-teams/solution.py -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/nice-teams/stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/nice-teams/stub.py -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/nice-teams/test-cases/input000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/nice-teams/test-cases/input000.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/nice-teams/test-cases/input001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/nice-teams/test-cases/input001.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/nice-teams/test-cases/input002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/nice-teams/test-cases/input002.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/nice-teams/test-cases/input003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/nice-teams/test-cases/input003.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/nice-teams/test-cases/input004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/nice-teams/test-cases/input004.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/nice-teams/test-cases/input005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/nice-teams/test-cases/input005.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/nice-teams/test-cases/input006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/nice-teams/test-cases/input006.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/nice-teams/test-cases/output000.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/nice-teams/test-cases/output001.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/nice-teams/test-cases/output002.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/nice-teams/test-cases/output003.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/nice-teams/test-cases/output004.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/nice-teams/test-cases/output005.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/nice-teams/test-cases/output006.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/sorted-sums/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/sorted-sums/README.md -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/sorted-sums/problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/sorted-sums/problem.png -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/sorted-sums/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/sorted-sums/solution.py -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/sorted-sums/stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/sorted-sums/stub.cc -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/sorted-sums/stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/sorted-sums/stub.py -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/sorted-sums/test-cases/input000.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 9 3 | 5 4 | 8 5 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/sorted-sums/test-cases/input001.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 5 3 | 9 4 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/sorted-sums/test-cases/input002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/sorted-sums/test-cases/input002.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/sorted-sums/test-cases/input003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/sorted-sums/test-cases/input003.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/sorted-sums/test-cases/input004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/sorted-sums/test-cases/input004.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/sorted-sums/test-cases/input005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/sorted-sums/test-cases/input005.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/sorted-sums/test-cases/input006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/sorted-sums/test-cases/input006.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/sorted-sums/test-cases/output000.txt: -------------------------------------------------------------------------------- 1 | 80 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/sorted-sums/test-cases/output001.txt: -------------------------------------------------------------------------------- 1 | 28 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/sorted-sums/test-cases/output002.txt: -------------------------------------------------------------------------------- 1 | 364271696 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/sorted-sums/test-cases/output003.txt: -------------------------------------------------------------------------------- 1 | 132805734 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/sorted-sums/test-cases/output004.txt: -------------------------------------------------------------------------------- 1 | 160569914 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/sorted-sums/test-cases/output005.txt: -------------------------------------------------------------------------------- 1 | 344134692 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/sorted-sums/test-cases/output006.txt: -------------------------------------------------------------------------------- 1 | 145945368 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/task-of-pairing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/task-of-pairing/README.md -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/task-of-pairing/problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/task-of-pairing/problem.png -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/task-of-pairing/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/task-of-pairing/solution.py -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/task-of-pairing/stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/task-of-pairing/stub.py -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/task-of-pairing/test-cases/input000.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 3 3 | 5 4 | 4 5 | 3 6 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/task-of-pairing/test-cases/input001.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 5 3 | 6 4 | 2 5 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/task-of-pairing/test-cases/input002.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 6 3 | 5 4 | 3 5 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/task-of-pairing/test-cases/output000.txt: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/task-of-pairing/test-cases/output001.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/task-of-pairing/test-cases/output002.txt: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/user-friendly-password-system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/user-friendly-password-system/README.md -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/user-friendly-password-system/problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/user-friendly-password-system/problem.png -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/user-friendly-password-system/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/user-friendly-password-system/solution.py -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/user-friendly-password-system/stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/user-friendly-password-system/stub.cc -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/user-friendly-password-system/stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/user-friendly-password-system/stub.py -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/user-friendly-password-system/test-cases/input000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/user-friendly-password-system/test-cases/input000.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/user-friendly-password-system/test-cases/input001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/user-friendly-password-system/test-cases/input001.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/user-friendly-password-system/test-cases/input002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/user-friendly-password-system/test-cases/input002.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/user-friendly-password-system/test-cases/input003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/user-friendly-password-system/test-cases/input003.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/user-friendly-password-system/test-cases/input004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/user-friendly-password-system/test-cases/input004.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/user-friendly-password-system/test-cases/output000.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 1 3 | 1 4 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/user-friendly-password-system/test-cases/output001.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 0 3 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/user-friendly-password-system/test-cases/output002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/certificates/problem-solving-intermediate/user-friendly-password-system/test-cases/output002.txt -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/user-friendly-password-system/test-cases/output003.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 0 3 | 1 4 | -------------------------------------------------------------------------------- /certificates/problem-solving-intermediate/user-friendly-password-system/test-cases/output004.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 0 3 | 1 4 | 0 5 | 0 6 | -------------------------------------------------------------------------------- /challenges/a-very-big-sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/a-very-big-sum.py -------------------------------------------------------------------------------- /challenges/acm-icpc-team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/acm-icpc-team.py -------------------------------------------------------------------------------- /challenges/angry-professor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/angry-professor.py -------------------------------------------------------------------------------- /challenges/append-and-delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/append-and-delete.py -------------------------------------------------------------------------------- /challenges/apple-and-orange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/apple-and-orange.py -------------------------------------------------------------------------------- /challenges/beautiful-days-at-the-movies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/beautiful-days-at-the-movies.py -------------------------------------------------------------------------------- /challenges/between-two-sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/between-two-sets.py -------------------------------------------------------------------------------- /challenges/birthday-cake-candles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/birthday-cake-candles.py -------------------------------------------------------------------------------- /challenges/bon-appetit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/bon-appetit.py -------------------------------------------------------------------------------- /challenges/breaking-best-and-worst-records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/breaking-best-and-worst-records.py -------------------------------------------------------------------------------- /challenges/cats-and-a-mouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/cats-and-a-mouse.py -------------------------------------------------------------------------------- /challenges/circular-array-rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/circular-array-rotation.py -------------------------------------------------------------------------------- /challenges/climbing-the-leaderboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/climbing-the-leaderboard.py -------------------------------------------------------------------------------- /challenges/compare-the-triplets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/compare-the-triplets.py -------------------------------------------------------------------------------- /challenges/counting-valleys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/counting-valleys.py -------------------------------------------------------------------------------- /challenges/cut-the-sticks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/cut-the-sticks.py -------------------------------------------------------------------------------- /challenges/day-of-the-programmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/day-of-the-programmer.py -------------------------------------------------------------------------------- /challenges/designer-pdf-viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/designer-pdf-viewer.py -------------------------------------------------------------------------------- /challenges/diagonal-difference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/diagonal-difference.py -------------------------------------------------------------------------------- /challenges/divisible-sum-pairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/divisible-sum-pairs.py -------------------------------------------------------------------------------- /challenges/drawing-book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/drawing-book.py -------------------------------------------------------------------------------- /challenges/electronics-shop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/electronics-shop.py -------------------------------------------------------------------------------- /challenges/equality-in-a-array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/equality-in-a-array.py -------------------------------------------------------------------------------- /challenges/extra-long-factorials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/extra-long-factorials.py -------------------------------------------------------------------------------- /challenges/find-digits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/find-digits.py -------------------------------------------------------------------------------- /challenges/frog-in-maze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/frog-in-maze.py -------------------------------------------------------------------------------- /challenges/grading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/grading.py -------------------------------------------------------------------------------- /challenges/jumping-on-the-clouds-revisited.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/jumping-on-the-clouds-revisited.py -------------------------------------------------------------------------------- /challenges/jumping-on-the-clouds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/jumping-on-the-clouds.py -------------------------------------------------------------------------------- /challenges/kangaroo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/kangaroo.py -------------------------------------------------------------------------------- /challenges/library-fine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/library-fine.py -------------------------------------------------------------------------------- /challenges/magic-square-forming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/magic-square-forming.py -------------------------------------------------------------------------------- /challenges/migratory-birds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/migratory-birds.py -------------------------------------------------------------------------------- /challenges/mini-max-sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/mini-max-sum.py -------------------------------------------------------------------------------- /challenges/non-divisible-subset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/non-divisible-subset.py -------------------------------------------------------------------------------- /challenges/organizing-containers-of-balls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/organizing-containers-of-balls.py -------------------------------------------------------------------------------- /challenges/permutation-equation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/permutation-equation.py -------------------------------------------------------------------------------- /challenges/picking-numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/picking-numbers.py -------------------------------------------------------------------------------- /challenges/plus-minus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/plus-minus.py -------------------------------------------------------------------------------- /challenges/queens-attack-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/queens-attack-2.py -------------------------------------------------------------------------------- /challenges/repeated-string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/repeated-string.py -------------------------------------------------------------------------------- /challenges/save-the-prisoner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/save-the-prisoner.py -------------------------------------------------------------------------------- /challenges/sherlock-and-cost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/sherlock-and-cost.py -------------------------------------------------------------------------------- /challenges/sherlock-and-squares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/sherlock-and-squares.py -------------------------------------------------------------------------------- /challenges/simple-array-sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/simple-array-sum.py -------------------------------------------------------------------------------- /challenges/sock-merchant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/sock-merchant.py -------------------------------------------------------------------------------- /challenges/staircase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/staircase.py -------------------------------------------------------------------------------- /challenges/strange-advertising.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/strange-advertising.py -------------------------------------------------------------------------------- /challenges/taum-and-bday.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/taum-and-bday.py -------------------------------------------------------------------------------- /challenges/the-birthday-bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/the-birthday-bar.py -------------------------------------------------------------------------------- /challenges/the-hurdle-race.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/the-hurdle-race.py -------------------------------------------------------------------------------- /challenges/time-conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/time-conversion.py -------------------------------------------------------------------------------- /challenges/utopian-tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kilian-hu/hackerrank-solutions/HEAD/challenges/utopian-tree.py --------------------------------------------------------------------------------