├── .editorconfig ├── .gitignore ├── C ├── C++ │ └── learning │ │ ├── hello.cpp │ │ ├── more-vector.cpp │ │ ├── stack_template.cpp │ │ └── vector.cpp ├── Codes │ ├── 01_knapsack_gfg.c │ ├── 2powers.c │ ├── closest_numbers.c │ ├── hanoi - Copy.c │ ├── hanoi.c │ ├── hanoi_r.c │ ├── kmap_solver.c │ ├── matrix_add.c │ ├── matrix_inverse.c │ ├── quicksort1partition.c │ └── unlimited_factorial.c ├── My C Libs │ ├── BIT.cpp │ ├── binary_tree.cpp │ ├── graphs.c │ ├── insertionsort.c │ ├── isprime.c │ ├── lexicographic.c │ ├── number_conv.c │ ├── quicksort.c │ ├── radix_sort.cpp │ ├── strrev.c │ ├── suffix_array.cpp │ └── ukkonen_suffix.cpp └── tools │ ├── testcase-gen.cpp │ └── testcase.txt ├── README.md ├── clean.sh ├── codechef ├── APRIL15 │ ├── brokphon.cpp │ ├── carlos.cpp │ ├── cheflcm.cpp │ ├── cseq.cpp │ ├── cseq.txt │ ├── devvote.txt │ ├── frmq.cpp │ ├── piano1.cpp │ └── test.c ├── MARCH15 │ ├── cnote.c │ ├── devclass.c │ ├── signwave.c │ ├── strsub.c │ └── strsub_old.c ├── MAY15 │ ├── chapd.cpp │ ├── chapd_pollard_rho.cpp │ ├── chefrp.cpp │ ├── coolguys.c │ ├── devstr.c │ ├── devstr.cpp │ └── setdiff.cpp ├── NOV15 │ └── simplesum_tests.py ├── OCT15 │ ├── adtri.cpp │ ├── jump.cpp │ ├── kspheres.cpp │ ├── listperms.py │ ├── lotery.cpp │ ├── lotery_basic.py │ ├── lotery_f.cpp │ ├── lotery_sq.cpp │ ├── mgchgym.cpp │ ├── pershfts.cpp │ ├── pershfts_dry.py │ ├── pershfts_n.cpp │ ├── pershifts_basic.py │ ├── subinc.cpp │ ├── timeasr.cpp │ └── wdtbam.cpp ├── OCT16 │ ├── bgqrs.cpp │ ├── bgqrs_simple.cpp │ ├── chdogs.cpp │ ├── chefkey.cpp │ ├── cheftwos.cpp │ ├── fenwiter.cpp │ ├── in.txt │ ├── searri_fast.cpp │ └── seastone.cpp ├── TLG.c ├── aug15 │ ├── admag.cpp │ ├── chinsm.cpp │ ├── cookmach.cpp │ ├── dcgame_bool.cpp │ ├── dcgame_ddrule.cpp │ ├── dcgame_r.cpp │ ├── dcgame_rr.cpp │ ├── dcgame_rr_stack.cpp │ ├── grguy.cpp │ └── wout.cpp ├── cdru2016 │ ├── in.txt │ ├── pascal_.c │ ├── qa.cpp │ ├── qc.cpp │ ├── qc.py │ ├── qd.cpp │ ├── qd.py │ └── qdt.py ├── chrl4.cpp ├── contest │ ├── cdbstr1.c │ ├── cdbstr4.c │ ├── cdbstr5.c │ └── cdbstr7.c ├── cook75 │ ├── bookchef.cpp │ ├── countway.cpp │ ├── in.txt │ ├── permexis.cpp │ └── uglyf.cpp ├── cook81 │ ├── abrepeat.cpp │ ├── candy123.cpp │ ├── input.txt │ └── shoptrip.cpp ├── coolguys.cpp ├── cooling.py ├── d1.cpp ├── fctrl.c ├── fctrl2.c ├── flipcoin.c ├── flipcoin.cpp ├── holes.c ├── holiday1.c ├── hs08test.c ├── intest.c ├── jul15 │ ├── addmul.c │ ├── addmul.cpp │ ├── chcube.cpp │ ├── chcube.py │ ├── egbobrd.cpp │ ├── input.txt │ ├── lckyst.cpp │ ├── mchef.cpp │ ├── mchef_t.cpp │ ├── seagm2.c │ ├── seagm2.cpp │ ├── seagm2.py │ ├── seagm2_2.py │ ├── testcase-gen.cpp │ └── testcase.txt ├── july16 │ ├── chefarc.cpp │ ├── chefelec.cpp │ ├── cheftet.cpp │ ├── chsgmnts.cpp │ ├── egrandr.cpp │ └── in.txt ├── june15 │ ├── STDYTAB.cpp │ ├── cbarg.cpp │ ├── chplgns.cpp │ ├── chstr.cpp │ ├── frndmtng.cpp │ ├── frndmtng2.cpp │ ├── frndmtng3.cpp │ └── stdytab.c ├── june16 │ ├── binop.cpp │ ├── chcoinsg.cpp │ ├── chearmy.cpp │ ├── chefark.cpp │ ├── chsqarr.cpp │ ├── devarray.cpp │ ├── frjump.cpp │ ├── in.txt │ └── test.cpp ├── leexams.cpp ├── leexams_not_mine.c ├── lucky5.cpp ├── may17 │ ├── chefcode.cpp │ ├── chefrout.cpp │ ├── chefsuba.cpp │ ├── input.txt │ ├── mxmedian.cpp │ ├── unicours.cpp │ └── wsites01.cpp ├── prime1.cpp ├── ranklist.c ├── sept15 │ ├── banrob.cpp │ ├── banrob_working.cpp │ ├── codecrck_16.cpp │ ├── donuts.cpp │ ├── lighthse.cpp │ ├── mstep.cpp │ ├── rebxor.cpp │ └── thegame.cpp ├── sept16 │ ├── chfnfrn.cpp │ ├── chmtdv.cpp │ ├── chmtdv_2.cpp │ ├── chmtdv_3.cpp │ ├── chmtdv_4.cpp │ ├── circleq.cpp │ ├── divmac.cpp │ ├── divmac_2.cpp │ ├── in.txt │ ├── jtree.cpp │ ├── lexopal.cpp │ ├── longseq.cpp │ └── rescalc.cpp ├── snackdown16qual │ ├── fdivgame.cpp │ ├── fdivgame.py │ ├── input.txt │ ├── kgood.cpp │ ├── kttable.cpp │ ├── mmsum.cpp │ └── vishal.java ├── snckel16 │ ├── arithm.cpp │ ├── coltree.cpp │ ├── in.txt │ ├── numset.cpp │ └── vcake.cpp ├── snckel17 │ ├── plusmul.cpp │ └── plusmul.txt ├── snckpa16 │ ├── givcandy.cpp │ ├── in.txt │ ├── makeart.cpp │ ├── makelis.cpp │ ├── makelis_test.py │ └── ndiffpal.cpp ├── snckpa17 │ ├── issnake.cpp │ ├── sntemple.cpp │ └── teamform.cpp ├── snckpb17 │ ├── sncoup.cpp │ ├── sndiscus.cpp │ ├── snelect.cpp │ └── snsocial.cpp ├── spoons.cpp ├── spotwo.c ├── test.c ├── turbosort.c └── xor.c ├── codeforces ├── 118A_string_task.cpp ├── 158A_next_round.cpp ├── 1A_theater_square.c ├── 200B_drinks.cpp ├── 291div2 │ ├── 1chewbeca_number.c │ ├── b_hansolo.c │ └── c_watto_mechanism.c ├── 295div2 │ ├── 1_pangram.c │ ├── 2_two_buttons.c │ └── 3_dna_alignment.c ├── 296div2 │ ├── error-correct-system.c │ └── playing-paper.c ├── 297div2 │ ├── A_vitaly_pie.c │ ├── B_pasha_string.c │ ├── C_ilya_sticks.cpp │ └── E_anya_cubes.cpp ├── 340div2 │ ├── A_elephant.cpp │ ├── B_chocolate.cpp │ ├── c_watering_flowers.cpp │ ├── d_poyline.cpp │ └── e.cpp ├── 472A_learnfrommath.c ├── 4A_watermelon.cpp ├── 515A_drazil_date.c ├── 515B_drazil_happy.c ├── 515C_drazil_factorial.c ├── 520B_two_buttons.c ├── 527C_glass_carving.cpp ├── 530b_string_inside_out.cpp ├── 540a_combination_locks.cpp ├── 551b_zgukistringz.cpp ├── 620B_grandfather_calculator.cpp ├── 71A_way_too_long_words.cpp ├── 732A_buy_a_shovel.cpp ├── 732B.cpp ├── 732C.cpp ├── 732D.cpp ├── 732E.cpp ├── 733A.cpp ├── 733B.cpp ├── 733C.cpp ├── 733D.cpp ├── 733E.cpp ├── codecraft_count_palindromes.c ├── codecraft_count_ways.c ├── codecraft_find_pth_number.c └── in.txt ├── codejam ├── 2015 │ ├── a.cpp │ ├── a_mushroom_monster.cpp │ ├── b_haircut.cpp │ ├── c_diktra.cpp │ ├── infinite-pancakes.cpp │ ├── infinite-pancakes2.cpp │ ├── input-output.cpp │ └── standing-ovation.cpp ├── 2016 │ ├── 1A │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── C2.cpp │ │ └── input.txt │ ├── 1C │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ └── input.txt │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── C2.cpp │ ├── D.cpp │ ├── D2.cpp │ ├── D_examine.py │ └── input.txt ├── 2017 │ ├── 1A │ │ ├── A_alphabet_cake.cpp │ │ └── B_rata.cpp │ ├── 1B │ │ ├── a.cpp │ │ └── b2.cpp │ └── qual │ │ ├── A-small-attempt0.in.txt │ │ ├── C_bathroom.cpp │ │ ├── a_pancake.cpp │ │ └── b_tidy_numbers.cpp └── practice │ └── alien-numbers.cpp ├── hackerearth ├── crazy-kangaroo.py ├── dcode15 │ ├── TEST.py │ ├── funny-addition.cpp │ ├── funny-addition.py │ ├── good-words.cpp │ ├── good-words.py │ ├── good-words2.py │ ├── input.txt │ ├── no-palgiarism.cpp │ ├── playing-with-subs.cpp │ ├── playing-with-subs.py │ ├── quick-money.cpp │ ├── troublesome-children.cpp │ └── vault-cracker.cpp ├── dcode16-regex │ ├── roll_call.pl │ ├── roll_fair.pl │ └── test.pl ├── dcode16 │ ├── assignment-overload.cpp │ ├── dot-products.cpp │ ├── in.txt │ ├── prime-palindromes.cpp │ ├── repetition-free.cpp │ └── snake-modified.cpp ├── dhoom-4.cpp ├── icpc-team-man.c ├── infotsav16 │ ├── in.txt │ ├── light-ryuk.cpp │ ├── moriaty-strings.cpp │ ├── shinchan-opti.cpp │ └── the-gardener.cpp ├── little-ashish-wife.c ├── march-clash-15 │ └── equivalent-strings-2.c ├── number-of-rs.c ├── oz-task.c ├── panda-xor.c ├── prom-night.c └── prom-night.py ├── hackerrank ├── 2ndlargestnumber.py ├── 2scomplement.c ├── 2scomplement_faster.c ├── abbreviation.cpp ├── absolute_permutation.cpp ├── almost_sorted.cpp ├── altchars.c ├── anagram.c ├── and-product.c ├── angrychild.c ├── array-splitting.cpp ├── asthon-string.c ├── bday_gift.c ├── bear-and-workbook.cpp ├── beautiful-path.cpp ├── beautiful_triplets.cpp ├── bfs_short_reach.cpp ├── bigger_is_greater.c ├── bomberman.cpp ├── bon_appetit.cpp ├── bonetrousle.cpp ├── bot-clean-stochastic.py ├── botclean.c ├── botclean.cpp ├── botclean.py ├── bricks-game.cpp ├── building-list.c ├── building-list.cpp ├── bus-station.cpp ├── caesar-cipher-1.py ├── candies.cpp ├── cavitymap.c ├── choclate_fiesta.py ├── choclatefeast.c ├── cipher.c ├── circlecity.c ├── class1-complexnumbers.py ├── clique.cpp ├── closest-number.py ├── coin_change.cpp ├── common_child.c ├── compare-the-triplets.py ├── connected-cell-in-a-grid.cpp ├── connecting_towns.c ├── correct-loop-variant.c ├── count-lock.cpp ├── countergame.c ├── counting_sort1.c ├── counting_sort2.c ├── counting_sort3.c ├── countluck.cpp ├── cutthe_steps.c ├── cutthetree.cpp ├── cutting_boards.c ├── cutting_boards_recursion.c ├── demidenko-farmer.c ├── detect-html-tags.py ├── diagonal_difference.py ├── die-hard-3.cpp ├── dijkstra_short_reach.cpp ├── divisible_sum_pairs.cpp ├── diwalilights.c ├── easy-sum.c ├── encryption.c ├── equal.cpp ├── euler-criter.c ├── even-odd-query.py ├── eventree.c ├── exceptions.py ├── fair-cut.cpp ├── fair_rations.cpp ├── fibonacci-modified.c ├── fibonacci-modified.py ├── filljars.c ├── find-maximum-index-product.cpp ├── find-point.py ├── find_digits.c ├── find_fibonacci_matrix.cpp ├── finddigit.c ├── findthemedian.c ├── flatland_space_stations.cpp ├── flipping_the_matrix.cpp ├── flippingbits.c ├── flowers.c ├── floyd-city-of-building.cpp ├── fraudelent-activity-notifications.cpp ├── full_counting_sort.c ├── full_counting_sort.cpp ├── funny-strings.cpp ├── gameofthrones1.c ├── gemstones.c ├── grid-challenge.c ├── grid-search.cpp ├── grid-walking.cpp ├── grid_search.py ├── hackerrank-tweets.py ├── hallowen.c ├── handshake.c ├── html-parser-1.py ├── html-parser-2.py ├── ice_cream_p.c ├── icmacpcteam.c ├── in.txt ├── input07.txt ├── insertion-advancedanal.c ├── insertion-part1.c ├── insertion-part2.c ├── insertion_sort_advanced.cpp ├── isfibo.c ├── jim_orders.cpp ├── journey_to_moon.c ├── journey_to_moon_graphs.c ├── jumping_on_clouds_revisisted.cpp ├── jumping_on_the_clouds.cpp ├── k-candy-store.cpp ├── kangaroo.cpp ├── kaprekar_numbers.py ├── kevin-expected-value.c ├── keyword_transp_cipher.c ├── knapsack.c ├── kruskalmstrsub.cpp ├── largest-rectangle.cpp ├── larrys-array.cpp ├── lexicographic_paths.c ├── library-fine.py ├── little-panda-power.cpp ├── little_ashish_huge_donation.cpp ├── lonelyint.c ├── longest_common_subsequence.cpp ├── longest_increasing_subsequence.cpp ├── longest_increasing_subsequent.c ├── longest_increasing_subsequent_backwards.c ├── lovelettermys.c ├── makeitanagram.c ├── manasa.c ├── manasalovesmaths.c ├── mandragora-forest.cpp ├── mark_toys.c ├── matrix-rotation-algo.cpp ├── maximise-it.py ├── maximisesum.cpp ├── maximum-perimeter-triangle.cpp ├── maximum-subarray.c ├── maxxor.c ├── minimum_distances.cpp ├── minimum_draws.c ├── missing_numbers.c ├── most-commons.py ├── mr-k-marsh.cpp ├── ncr-table.cpp ├── ncr.c ├── new_year_chaos.cpp ├── no-idea.py ├── non_divisible_subset.cpp ├── pairs.cpp ├── pairs.py ├── palindromeindex.c ├── palindromeindex_optimized.c ├── pangrams.c ├── permutation_game.c ├── picking-cards.cpp ├── piling-up.py ├── playingwithnumbers.c ├── plus-minus.py ├── possible_path.py ├── power-calculation.c ├── power-of-large-numbers.py ├── prismstsub.cpp ├── python-sort-data.py ├── quicksort2sorting.c ├── quicksort3inplace.c ├── rectangular-game.py ├── redjohnisback.c ├── regex-substitution.py ├── repeated_string.cpp ├── reverse_shuffle_merge.c ├── reversegame.cpp ├── running_time_algo.c ├── runningtimeofquicksort.c ├── sansa_xor.c ├── save_the_prisoner.cpp ├── saveprincess.c ├── saveprincess2.c ├── security-beijective-functions.py ├── security-inverse-function.py ├── security-involution.py ├── security-key-spaces.py ├── security-message-text-ciphertext-space.py ├── security-tut-permutation.py ├── sher_sq.c ├── sherlock-divisors.cpp ├── sherlock-moving-tiles.cpp ├── sherlock-square.c ├── sherlock_and_pairs.c ├── sherlock_array.c ├── sherlock_beast.c ├── sherlock_couting.c ├── sherlock_gcd.c ├── sherlock_minimax.cpp ├── sherlock_permutations.py ├── sherlock_queries.c ├── sherlock_queries.cpp ├── sherlock_queries_strings.c ├── sherlock_watson.c ├── smith-number.cpp ├── snakes_ladders.c ├── snakes_ladders.cpp ├── song-of-pi.cpp ├── split-numbers.py ├── staircase.py ├── stockmax.c ├── strange-grid.cpp ├── strange_code.cpp ├── subset-component.cpp ├── summing-pieces.cpp ├── summing-the-n-series.c ├── taum-bday.c ├── the-bidding-game.py ├── the-minion-game.py ├── the_time_in_words.py ├── time-conversion.py ├── triangle-numbers.cpp ├── tutorial-intro.c ├── two-strings.cpp ├── two_pluses.cpp ├── twoarrays.c ├── utopia.c ├── valid-pan-format.cpp ├── wetshark-42.cpp ├── whats_next.cpp ├── word-order.py ├── xor_sequence.cpp └── zipped.py ├── hackerrank_contests ├── 101hack33 │ ├── avg-modulo.c │ ├── avg-modulo.cpp │ ├── longest-path.cpp │ └── max-sum-subarray.cpp ├── 101hackjan │ ├── angryprof.c │ ├── maximizesum.c │ └── ms.c ├── 101hackmarch │ ├── devu-minimize-runs.cpp │ └── girl-spirits.cpp ├── 2014_w12 │ ├── chief_hopper.c │ └── priyanka_toys.c ├── amalthea_14 │ ├── _test.c │ ├── ap.c │ ├── fz.c │ ├── nod.c │ ├── pwd.c │ ├── pwd_a.c │ ├── s1.c │ ├── seq2.c │ ├── sr.c │ └── strrev.c ├── codedash │ ├── birthday_gift.c │ ├── birthday_gift_opt.c │ ├── dash1 - closure_password.c │ ├── dash2 - squares.c │ ├── dash4 - circularmatrix.c │ ├── dash7 - restaurent2.c │ ├── palindrome.c │ └── quicksort1partition.c ├── countercode │ ├── campers.cpp │ ├── deg-of-dirtiness.cpp │ ├── imba.cpp │ ├── poisonous-plants-naive.cpp │ └── poisonous-plants.cpp ├── epiccode15 │ ├── begin-end.cpp │ ├── dance-in-pairs.cpp │ ├── epic-tree.cpp │ ├── line-segments.cpp │ ├── line-segments2.cpp │ ├── perfect-hiring.cpp │ ├── set-queries.cpp │ ├── square-array.c │ ├── square-array.cpp │ └── white-falcon.cpp ├── iiitv.init-17-1 │ ├── cersei_seven_kingdoms.cpp │ ├── in.txt │ └── night_king_tickets.cpp ├── iiitv.short │ ├── good_vs_bad.cpp │ ├── in.txt │ ├── input00.txt │ ├── johns_new_game.cpp │ ├── nawabs_research_katara.cpp │ ├── om_prakash_bells.py │ └── prof_graph_paper.cpp ├── project_euler+ │ ├── 1-3and5.c │ ├── 10summationofprimes.c │ ├── 4smallestmultiple.c │ ├── 6sumsquares.c │ ├── 7_1001prime.c │ ├── 8largestprod.c │ ├── 9specialpythagorean.c │ ├── evenfibonacci.c │ ├── largestpalindrome.c │ └── largestprimefact.c ├── pythonista_practise │ ├── calculator.py │ ├── decorators2-namedir.py │ ├── filter-validemail.py │ ├── find_percent.py │ ├── findastring.py │ ├── leibniz.py │ ├── list-comprehension.py │ ├── map_lambda.py │ ├── nestedlist.py │ ├── regex1-validphonenum.py │ ├── regex2-validromannumbers.py │ ├── sets_symmetricdifference.py │ ├── standard_mobile_numbers.py │ ├── trignometric_ratios.py │ ├── xml1.py │ └── xml2-maxdepth.py ├── quora_hack14 │ └── 1archery.c ├── w25 │ ├── append-delete.cpp │ ├── baby-step-giant-step.cpp │ ├── between2sets.cpp │ ├── dag-queries.cpp │ ├── good-point.cpp │ ├── min-cyclic-shift.cpp │ ├── stone-division-com.cpp │ └── stone-division.cpp ├── week14 │ ├── number-list.c │ ├── superman-celeb-diwali.c │ └── worst-permutation.c ├── world_code_sprint │ ├── Emas-supercomputer.cpp │ ├── alien-flowers.cpp │ ├── alien-flowers.txt │ ├── buildastring.cpp │ ├── flatland_space.cpp │ └── save_our_ship.cpp └── world_cup2015 │ └── swapping-bridges.cpp ├── leetcode ├── easy │ ├── find-center-of-star-graph.cpp │ ├── palindrome-number.c │ ├── roman-to-integer.cpp │ └── two-sum.cpp ├── hard │ └── median-of-two-sorted-arrays.ts └── medium │ ├── add-two-numbers.ts │ ├── binary-search-tree-to-greater-sum-tree.cpp │ ├── grumpy-bookstore-owner.cpp │ ├── jump-game-ii.cpp │ ├── letter-combinations-of-a-phone-number.cpp │ ├── longest-continuous-subarray-with-absolute-diff-less-than-or-equal-to-limit.cpp │ ├── longest-palindromic-substring.ts │ ├── longest-substring-without-repeating-characters.ts │ ├── merge-intervals.cpp │ ├── minimum-area-rectangle.cpp │ ├── minimum-number-of-days-to-make-m-bouquets.ts │ └── reverse-integer.ts ├── other_contests ├── codegladiators16 │ └── easy1.cpp ├── codekaze-jan │ ├── a_peaceful_world.cpp │ ├── near_vs_mello.cpp │ └── ryuk_love_for_apples.cpp ├── codevita-r2-17 │ ├── input.txt │ ├── q1.cpp │ ├── q2.cpp │ ├── q3.cpp │ ├── q6.cpp │ ├── test.cpp │ ├── test2.cpp │ └── testx.cpp ├── codility_test_toptal │ ├── msw.txt │ ├── other │ │ ├── task1.cpp │ │ ├── task2.cpp │ │ └── task3.cpp │ ├── q1.cpp │ ├── q2.py │ ├── some_other │ │ └── some_q3.cpp │ ├── task1.cpp │ ├── task2.cpp │ ├── task3.cpp │ └── trial.cpp └── fbhckup-qual-2016 │ ├── in.txt │ ├── lazy_loading.cpp │ ├── lazy_loading.txt │ ├── progress_pie.cpp │ └── progress_pie.txt ├── spoj ├── LGIC.py ├── acpc10a.cpp ├── addrev.c ├── bad.cpp ├── cvjetici.cpp ├── dcepc12h.cpp ├── dcepc14i.py ├── dcepc902.c ├── dcepc902.cpp ├── divsum.cpp ├── favdice.cpp ├── gnyr09f.cpp ├── gss1.c ├── gss1.cpp ├── haybale.cpp ├── horrible.cpp ├── input.txt ├── lastdig.cpp ├── lengfact.c ├── lexisort.cpp ├── loopexp.cpp ├── marriage.cpp ├── marriage_way2.cpp ├── mkjump_dfs.cpp ├── mul.py ├── nsteps.cpp ├── onp.c ├── palin_next_palindrome.c ├── pcpc12e.cpp ├── prime1.c ├── problem.c ├── rangesum.cpp ├── rmqsq.cpp ├── samer08f.cpp ├── test.cpp ├── toandfro.cpp ├── updateit.cpp ├── vfmul.py ├── vfmul_multiplication.c └── words1.cpp ├── test ├── ll_sort.cpp ├── ll_sort.go ├── ll_sort.py ├── rev_num.cpp └── test.py └── topcoder └── srm └── 144-1-300.cpp /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/.gitignore -------------------------------------------------------------------------------- /C/C++/learning/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/C/C++/learning/hello.cpp -------------------------------------------------------------------------------- /C/C++/learning/more-vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/C/C++/learning/more-vector.cpp -------------------------------------------------------------------------------- /C/C++/learning/stack_template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/C/C++/learning/stack_template.cpp -------------------------------------------------------------------------------- /C/C++/learning/vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/C/C++/learning/vector.cpp -------------------------------------------------------------------------------- /C/Codes/01_knapsack_gfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/C/Codes/01_knapsack_gfg.c -------------------------------------------------------------------------------- /C/Codes/2powers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/C/Codes/2powers.c -------------------------------------------------------------------------------- /C/Codes/closest_numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/C/Codes/closest_numbers.c -------------------------------------------------------------------------------- /C/Codes/hanoi - Copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/C/Codes/hanoi - Copy.c -------------------------------------------------------------------------------- /C/Codes/hanoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/C/Codes/hanoi.c -------------------------------------------------------------------------------- /C/Codes/hanoi_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/C/Codes/hanoi_r.c -------------------------------------------------------------------------------- /C/Codes/kmap_solver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/C/Codes/kmap_solver.c -------------------------------------------------------------------------------- /C/Codes/matrix_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/C/Codes/matrix_add.c -------------------------------------------------------------------------------- /C/Codes/matrix_inverse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/C/Codes/matrix_inverse.c -------------------------------------------------------------------------------- /C/Codes/quicksort1partition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/C/Codes/quicksort1partition.c -------------------------------------------------------------------------------- /C/Codes/unlimited_factorial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/C/Codes/unlimited_factorial.c -------------------------------------------------------------------------------- /C/My C Libs/BIT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/C/My C Libs/BIT.cpp -------------------------------------------------------------------------------- /C/My C Libs/binary_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/C/My C Libs/binary_tree.cpp -------------------------------------------------------------------------------- /C/My C Libs/graphs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/C/My C Libs/graphs.c -------------------------------------------------------------------------------- /C/My C Libs/insertionsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/C/My C Libs/insertionsort.c -------------------------------------------------------------------------------- /C/My C Libs/isprime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/C/My C Libs/isprime.c -------------------------------------------------------------------------------- /C/My C Libs/lexicographic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/C/My C Libs/lexicographic.c -------------------------------------------------------------------------------- /C/My C Libs/number_conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/C/My C Libs/number_conv.c -------------------------------------------------------------------------------- /C/My C Libs/quicksort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/C/My C Libs/quicksort.c -------------------------------------------------------------------------------- /C/My C Libs/radix_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/C/My C Libs/radix_sort.cpp -------------------------------------------------------------------------------- /C/My C Libs/strrev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/C/My C Libs/strrev.c -------------------------------------------------------------------------------- /C/My C Libs/suffix_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/C/My C Libs/suffix_array.cpp -------------------------------------------------------------------------------- /C/My C Libs/ukkonen_suffix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/C/My C Libs/ukkonen_suffix.cpp -------------------------------------------------------------------------------- /C/tools/testcase-gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/C/tools/testcase-gen.cpp -------------------------------------------------------------------------------- /C/tools/testcase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/C/tools/testcase.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/README.md -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/clean.sh -------------------------------------------------------------------------------- /codechef/APRIL15/brokphon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/APRIL15/brokphon.cpp -------------------------------------------------------------------------------- /codechef/APRIL15/carlos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/APRIL15/carlos.cpp -------------------------------------------------------------------------------- /codechef/APRIL15/cheflcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/APRIL15/cheflcm.cpp -------------------------------------------------------------------------------- /codechef/APRIL15/cseq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/APRIL15/cseq.cpp -------------------------------------------------------------------------------- /codechef/APRIL15/cseq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/APRIL15/cseq.txt -------------------------------------------------------------------------------- /codechef/APRIL15/devvote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/APRIL15/devvote.txt -------------------------------------------------------------------------------- /codechef/APRIL15/frmq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/APRIL15/frmq.cpp -------------------------------------------------------------------------------- /codechef/APRIL15/piano1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/APRIL15/piano1.cpp -------------------------------------------------------------------------------- /codechef/APRIL15/test.c: -------------------------------------------------------------------------------- 1 | int main(){ 2 | return 0; 3 | } -------------------------------------------------------------------------------- /codechef/MARCH15/cnote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/MARCH15/cnote.c -------------------------------------------------------------------------------- /codechef/MARCH15/devclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/MARCH15/devclass.c -------------------------------------------------------------------------------- /codechef/MARCH15/signwave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/MARCH15/signwave.c -------------------------------------------------------------------------------- /codechef/MARCH15/strsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/MARCH15/strsub.c -------------------------------------------------------------------------------- /codechef/MARCH15/strsub_old.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/MARCH15/strsub_old.c -------------------------------------------------------------------------------- /codechef/MAY15/chapd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/MAY15/chapd.cpp -------------------------------------------------------------------------------- /codechef/MAY15/chapd_pollard_rho.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/MAY15/chapd_pollard_rho.cpp -------------------------------------------------------------------------------- /codechef/MAY15/chefrp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/MAY15/chefrp.cpp -------------------------------------------------------------------------------- /codechef/MAY15/coolguys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/MAY15/coolguys.c -------------------------------------------------------------------------------- /codechef/MAY15/devstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/MAY15/devstr.c -------------------------------------------------------------------------------- /codechef/MAY15/devstr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/MAY15/devstr.cpp -------------------------------------------------------------------------------- /codechef/MAY15/setdiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/MAY15/setdiff.cpp -------------------------------------------------------------------------------- /codechef/NOV15/simplesum_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/NOV15/simplesum_tests.py -------------------------------------------------------------------------------- /codechef/OCT15/adtri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/OCT15/adtri.cpp -------------------------------------------------------------------------------- /codechef/OCT15/jump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/OCT15/jump.cpp -------------------------------------------------------------------------------- /codechef/OCT15/kspheres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/OCT15/kspheres.cpp -------------------------------------------------------------------------------- /codechef/OCT15/listperms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/OCT15/listperms.py -------------------------------------------------------------------------------- /codechef/OCT15/lotery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/OCT15/lotery.cpp -------------------------------------------------------------------------------- /codechef/OCT15/lotery_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/OCT15/lotery_basic.py -------------------------------------------------------------------------------- /codechef/OCT15/lotery_f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/OCT15/lotery_f.cpp -------------------------------------------------------------------------------- /codechef/OCT15/lotery_sq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/OCT15/lotery_sq.cpp -------------------------------------------------------------------------------- /codechef/OCT15/mgchgym.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/OCT15/mgchgym.cpp -------------------------------------------------------------------------------- /codechef/OCT15/pershfts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/OCT15/pershfts.cpp -------------------------------------------------------------------------------- /codechef/OCT15/pershfts_dry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/OCT15/pershfts_dry.py -------------------------------------------------------------------------------- /codechef/OCT15/pershfts_n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/OCT15/pershfts_n.cpp -------------------------------------------------------------------------------- /codechef/OCT15/pershifts_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/OCT15/pershifts_basic.py -------------------------------------------------------------------------------- /codechef/OCT15/subinc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/OCT15/subinc.cpp -------------------------------------------------------------------------------- /codechef/OCT15/timeasr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/OCT15/timeasr.cpp -------------------------------------------------------------------------------- /codechef/OCT15/wdtbam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/OCT15/wdtbam.cpp -------------------------------------------------------------------------------- /codechef/OCT16/bgqrs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/OCT16/bgqrs.cpp -------------------------------------------------------------------------------- /codechef/OCT16/bgqrs_simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/OCT16/bgqrs_simple.cpp -------------------------------------------------------------------------------- /codechef/OCT16/chdogs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/OCT16/chdogs.cpp -------------------------------------------------------------------------------- /codechef/OCT16/chefkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/OCT16/chefkey.cpp -------------------------------------------------------------------------------- /codechef/OCT16/cheftwos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/OCT16/cheftwos.cpp -------------------------------------------------------------------------------- /codechef/OCT16/fenwiter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/OCT16/fenwiter.cpp -------------------------------------------------------------------------------- /codechef/OCT16/in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/OCT16/in.txt -------------------------------------------------------------------------------- /codechef/OCT16/searri_fast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/OCT16/searri_fast.cpp -------------------------------------------------------------------------------- /codechef/OCT16/seastone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/OCT16/seastone.cpp -------------------------------------------------------------------------------- /codechef/TLG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/TLG.c -------------------------------------------------------------------------------- /codechef/aug15/admag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/aug15/admag.cpp -------------------------------------------------------------------------------- /codechef/aug15/chinsm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/aug15/chinsm.cpp -------------------------------------------------------------------------------- /codechef/aug15/cookmach.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/aug15/cookmach.cpp -------------------------------------------------------------------------------- /codechef/aug15/dcgame_bool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/aug15/dcgame_bool.cpp -------------------------------------------------------------------------------- /codechef/aug15/dcgame_ddrule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/aug15/dcgame_ddrule.cpp -------------------------------------------------------------------------------- /codechef/aug15/dcgame_r.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/aug15/dcgame_r.cpp -------------------------------------------------------------------------------- /codechef/aug15/dcgame_rr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/aug15/dcgame_rr.cpp -------------------------------------------------------------------------------- /codechef/aug15/dcgame_rr_stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/aug15/dcgame_rr_stack.cpp -------------------------------------------------------------------------------- /codechef/aug15/grguy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/aug15/grguy.cpp -------------------------------------------------------------------------------- /codechef/aug15/wout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/aug15/wout.cpp -------------------------------------------------------------------------------- /codechef/cdru2016/in.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 5 3 | 4 4 | 3 -------------------------------------------------------------------------------- /codechef/cdru2016/pascal_.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/cdru2016/pascal_.c -------------------------------------------------------------------------------- /codechef/cdru2016/qa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/cdru2016/qa.cpp -------------------------------------------------------------------------------- /codechef/cdru2016/qc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/cdru2016/qc.cpp -------------------------------------------------------------------------------- /codechef/cdru2016/qc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/cdru2016/qc.py -------------------------------------------------------------------------------- /codechef/cdru2016/qd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/cdru2016/qd.cpp -------------------------------------------------------------------------------- /codechef/cdru2016/qd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/cdru2016/qd.py -------------------------------------------------------------------------------- /codechef/cdru2016/qdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/cdru2016/qdt.py -------------------------------------------------------------------------------- /codechef/chrl4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/chrl4.cpp -------------------------------------------------------------------------------- /codechef/contest/cdbstr1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/contest/cdbstr1.c -------------------------------------------------------------------------------- /codechef/contest/cdbstr4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/contest/cdbstr4.c -------------------------------------------------------------------------------- /codechef/contest/cdbstr5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/contest/cdbstr5.c -------------------------------------------------------------------------------- /codechef/contest/cdbstr7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/contest/cdbstr7.c -------------------------------------------------------------------------------- /codechef/cook75/bookchef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/cook75/bookchef.cpp -------------------------------------------------------------------------------- /codechef/cook75/countway.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/cook75/countway.cpp -------------------------------------------------------------------------------- /codechef/cook75/in.txt: -------------------------------------------------------------------------------- 1 | 4 2 2 | 3 2 2 3 -------------------------------------------------------------------------------- /codechef/cook75/permexis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/cook75/permexis.cpp -------------------------------------------------------------------------------- /codechef/cook75/uglyf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/cook75/uglyf.cpp -------------------------------------------------------------------------------- /codechef/cook81/abrepeat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/cook81/abrepeat.cpp -------------------------------------------------------------------------------- /codechef/cook81/candy123.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/cook81/candy123.cpp -------------------------------------------------------------------------------- /codechef/cook81/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/cook81/input.txt -------------------------------------------------------------------------------- /codechef/cook81/shoptrip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/cook81/shoptrip.cpp -------------------------------------------------------------------------------- /codechef/coolguys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/coolguys.cpp -------------------------------------------------------------------------------- /codechef/cooling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/cooling.py -------------------------------------------------------------------------------- /codechef/d1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/d1.cpp -------------------------------------------------------------------------------- /codechef/fctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/fctrl.c -------------------------------------------------------------------------------- /codechef/fctrl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/fctrl2.c -------------------------------------------------------------------------------- /codechef/flipcoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/flipcoin.c -------------------------------------------------------------------------------- /codechef/flipcoin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/flipcoin.cpp -------------------------------------------------------------------------------- /codechef/holes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/holes.c -------------------------------------------------------------------------------- /codechef/holiday1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/holiday1.c -------------------------------------------------------------------------------- /codechef/hs08test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/hs08test.c -------------------------------------------------------------------------------- /codechef/intest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/intest.c -------------------------------------------------------------------------------- /codechef/jul15/addmul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/jul15/addmul.c -------------------------------------------------------------------------------- /codechef/jul15/addmul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/jul15/addmul.cpp -------------------------------------------------------------------------------- /codechef/jul15/chcube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/jul15/chcube.cpp -------------------------------------------------------------------------------- /codechef/jul15/chcube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/jul15/chcube.py -------------------------------------------------------------------------------- /codechef/jul15/egbobrd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/jul15/egbobrd.cpp -------------------------------------------------------------------------------- /codechef/jul15/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/jul15/input.txt -------------------------------------------------------------------------------- /codechef/jul15/lckyst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/jul15/lckyst.cpp -------------------------------------------------------------------------------- /codechef/jul15/mchef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/jul15/mchef.cpp -------------------------------------------------------------------------------- /codechef/jul15/mchef_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/jul15/mchef_t.cpp -------------------------------------------------------------------------------- /codechef/jul15/seagm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/jul15/seagm2.c -------------------------------------------------------------------------------- /codechef/jul15/seagm2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/jul15/seagm2.cpp -------------------------------------------------------------------------------- /codechef/jul15/seagm2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/jul15/seagm2.py -------------------------------------------------------------------------------- /codechef/jul15/seagm2_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/jul15/seagm2_2.py -------------------------------------------------------------------------------- /codechef/jul15/testcase-gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/jul15/testcase-gen.cpp -------------------------------------------------------------------------------- /codechef/jul15/testcase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/jul15/testcase.txt -------------------------------------------------------------------------------- /codechef/july16/chefarc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/july16/chefarc.cpp -------------------------------------------------------------------------------- /codechef/july16/chefelec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/july16/chefelec.cpp -------------------------------------------------------------------------------- /codechef/july16/cheftet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/july16/cheftet.cpp -------------------------------------------------------------------------------- /codechef/july16/chsgmnts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/july16/chsgmnts.cpp -------------------------------------------------------------------------------- /codechef/july16/egrandr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/july16/egrandr.cpp -------------------------------------------------------------------------------- /codechef/july16/in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/july16/in.txt -------------------------------------------------------------------------------- /codechef/june15/STDYTAB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/june15/STDYTAB.cpp -------------------------------------------------------------------------------- /codechef/june15/cbarg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/june15/cbarg.cpp -------------------------------------------------------------------------------- /codechef/june15/chplgns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/june15/chplgns.cpp -------------------------------------------------------------------------------- /codechef/june15/chstr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/june15/chstr.cpp -------------------------------------------------------------------------------- /codechef/june15/frndmtng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/june15/frndmtng.cpp -------------------------------------------------------------------------------- /codechef/june15/frndmtng2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/june15/frndmtng2.cpp -------------------------------------------------------------------------------- /codechef/june15/frndmtng3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/june15/frndmtng3.cpp -------------------------------------------------------------------------------- /codechef/june15/stdytab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/june15/stdytab.c -------------------------------------------------------------------------------- /codechef/june16/binop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/june16/binop.cpp -------------------------------------------------------------------------------- /codechef/june16/chcoinsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/june16/chcoinsg.cpp -------------------------------------------------------------------------------- /codechef/june16/chearmy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/june16/chearmy.cpp -------------------------------------------------------------------------------- /codechef/june16/chefark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/june16/chefark.cpp -------------------------------------------------------------------------------- /codechef/june16/chsqarr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/june16/chsqarr.cpp -------------------------------------------------------------------------------- /codechef/june16/devarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/june16/devarray.cpp -------------------------------------------------------------------------------- /codechef/june16/frjump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/june16/frjump.cpp -------------------------------------------------------------------------------- /codechef/june16/in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/june16/in.txt -------------------------------------------------------------------------------- /codechef/june16/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/june16/test.cpp -------------------------------------------------------------------------------- /codechef/leexams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/leexams.cpp -------------------------------------------------------------------------------- /codechef/leexams_not_mine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/leexams_not_mine.c -------------------------------------------------------------------------------- /codechef/lucky5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/lucky5.cpp -------------------------------------------------------------------------------- /codechef/may17/chefcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/may17/chefcode.cpp -------------------------------------------------------------------------------- /codechef/may17/chefrout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/may17/chefrout.cpp -------------------------------------------------------------------------------- /codechef/may17/chefsuba.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/may17/chefsuba.cpp -------------------------------------------------------------------------------- /codechef/may17/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/may17/input.txt -------------------------------------------------------------------------------- /codechef/may17/mxmedian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/may17/mxmedian.cpp -------------------------------------------------------------------------------- /codechef/may17/unicours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/may17/unicours.cpp -------------------------------------------------------------------------------- /codechef/may17/wsites01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/may17/wsites01.cpp -------------------------------------------------------------------------------- /codechef/prime1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/prime1.cpp -------------------------------------------------------------------------------- /codechef/ranklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/ranklist.c -------------------------------------------------------------------------------- /codechef/sept15/banrob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/sept15/banrob.cpp -------------------------------------------------------------------------------- /codechef/sept15/banrob_working.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/sept15/banrob_working.cpp -------------------------------------------------------------------------------- /codechef/sept15/codecrck_16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/sept15/codecrck_16.cpp -------------------------------------------------------------------------------- /codechef/sept15/donuts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/sept15/donuts.cpp -------------------------------------------------------------------------------- /codechef/sept15/lighthse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/sept15/lighthse.cpp -------------------------------------------------------------------------------- /codechef/sept15/mstep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/sept15/mstep.cpp -------------------------------------------------------------------------------- /codechef/sept15/rebxor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/sept15/rebxor.cpp -------------------------------------------------------------------------------- /codechef/sept15/thegame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/sept15/thegame.cpp -------------------------------------------------------------------------------- /codechef/sept16/chfnfrn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/sept16/chfnfrn.cpp -------------------------------------------------------------------------------- /codechef/sept16/chmtdv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/sept16/chmtdv.cpp -------------------------------------------------------------------------------- /codechef/sept16/chmtdv_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/sept16/chmtdv_2.cpp -------------------------------------------------------------------------------- /codechef/sept16/chmtdv_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/sept16/chmtdv_3.cpp -------------------------------------------------------------------------------- /codechef/sept16/chmtdv_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/sept16/chmtdv_4.cpp -------------------------------------------------------------------------------- /codechef/sept16/circleq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/sept16/circleq.cpp -------------------------------------------------------------------------------- /codechef/sept16/divmac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/sept16/divmac.cpp -------------------------------------------------------------------------------- /codechef/sept16/divmac_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/sept16/divmac_2.cpp -------------------------------------------------------------------------------- /codechef/sept16/in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/sept16/in.txt -------------------------------------------------------------------------------- /codechef/sept16/jtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/sept16/jtree.cpp -------------------------------------------------------------------------------- /codechef/sept16/lexopal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/sept16/lexopal.cpp -------------------------------------------------------------------------------- /codechef/sept16/longseq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/sept16/longseq.cpp -------------------------------------------------------------------------------- /codechef/sept16/rescalc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/sept16/rescalc.cpp -------------------------------------------------------------------------------- /codechef/snackdown16qual/fdivgame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/snackdown16qual/fdivgame.cpp -------------------------------------------------------------------------------- /codechef/snackdown16qual/fdivgame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/snackdown16qual/fdivgame.py -------------------------------------------------------------------------------- /codechef/snackdown16qual/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/snackdown16qual/input.txt -------------------------------------------------------------------------------- /codechef/snackdown16qual/kgood.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/snackdown16qual/kgood.cpp -------------------------------------------------------------------------------- /codechef/snackdown16qual/kttable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/snackdown16qual/kttable.cpp -------------------------------------------------------------------------------- /codechef/snackdown16qual/mmsum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/snackdown16qual/mmsum.cpp -------------------------------------------------------------------------------- /codechef/snackdown16qual/vishal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/snackdown16qual/vishal.java -------------------------------------------------------------------------------- /codechef/snckel16/arithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/snckel16/arithm.cpp -------------------------------------------------------------------------------- /codechef/snckel16/coltree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/snckel16/coltree.cpp -------------------------------------------------------------------------------- /codechef/snckel16/in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/snckel16/in.txt -------------------------------------------------------------------------------- /codechef/snckel16/numset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/snckel16/numset.cpp -------------------------------------------------------------------------------- /codechef/snckel16/vcake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/snckel16/vcake.cpp -------------------------------------------------------------------------------- /codechef/snckel17/plusmul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/snckel17/plusmul.cpp -------------------------------------------------------------------------------- /codechef/snckel17/plusmul.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/snckel17/plusmul.txt -------------------------------------------------------------------------------- /codechef/snckpa16/givcandy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/snckpa16/givcandy.cpp -------------------------------------------------------------------------------- /codechef/snckpa16/in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/snckpa16/in.txt -------------------------------------------------------------------------------- /codechef/snckpa16/makeart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/snckpa16/makeart.cpp -------------------------------------------------------------------------------- /codechef/snckpa16/makelis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/snckpa16/makelis.cpp -------------------------------------------------------------------------------- /codechef/snckpa16/makelis_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/snckpa16/makelis_test.py -------------------------------------------------------------------------------- /codechef/snckpa16/ndiffpal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/snckpa16/ndiffpal.cpp -------------------------------------------------------------------------------- /codechef/snckpa17/issnake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/snckpa17/issnake.cpp -------------------------------------------------------------------------------- /codechef/snckpa17/sntemple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/snckpa17/sntemple.cpp -------------------------------------------------------------------------------- /codechef/snckpa17/teamform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/snckpa17/teamform.cpp -------------------------------------------------------------------------------- /codechef/snckpb17/sncoup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/snckpb17/sncoup.cpp -------------------------------------------------------------------------------- /codechef/snckpb17/sndiscus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/snckpb17/sndiscus.cpp -------------------------------------------------------------------------------- /codechef/snckpb17/snelect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/snckpb17/snelect.cpp -------------------------------------------------------------------------------- /codechef/snckpb17/snsocial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/snckpb17/snsocial.cpp -------------------------------------------------------------------------------- /codechef/spoons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/spoons.cpp -------------------------------------------------------------------------------- /codechef/spotwo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/spotwo.c -------------------------------------------------------------------------------- /codechef/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/test.c -------------------------------------------------------------------------------- /codechef/turbosort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/turbosort.c -------------------------------------------------------------------------------- /codechef/xor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codechef/xor.c -------------------------------------------------------------------------------- /codeforces/118A_string_task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/118A_string_task.cpp -------------------------------------------------------------------------------- /codeforces/158A_next_round.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/158A_next_round.cpp -------------------------------------------------------------------------------- /codeforces/1A_theater_square.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/1A_theater_square.c -------------------------------------------------------------------------------- /codeforces/200B_drinks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/200B_drinks.cpp -------------------------------------------------------------------------------- /codeforces/291div2/1chewbeca_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/291div2/1chewbeca_number.c -------------------------------------------------------------------------------- /codeforces/291div2/b_hansolo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/291div2/b_hansolo.c -------------------------------------------------------------------------------- /codeforces/291div2/c_watto_mechanism.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/291div2/c_watto_mechanism.c -------------------------------------------------------------------------------- /codeforces/295div2/1_pangram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/295div2/1_pangram.c -------------------------------------------------------------------------------- /codeforces/295div2/2_two_buttons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/295div2/2_two_buttons.c -------------------------------------------------------------------------------- /codeforces/295div2/3_dna_alignment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/295div2/3_dna_alignment.c -------------------------------------------------------------------------------- /codeforces/296div2/error-correct-system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/296div2/error-correct-system.c -------------------------------------------------------------------------------- /codeforces/296div2/playing-paper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/296div2/playing-paper.c -------------------------------------------------------------------------------- /codeforces/297div2/A_vitaly_pie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/297div2/A_vitaly_pie.c -------------------------------------------------------------------------------- /codeforces/297div2/B_pasha_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/297div2/B_pasha_string.c -------------------------------------------------------------------------------- /codeforces/297div2/C_ilya_sticks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/297div2/C_ilya_sticks.cpp -------------------------------------------------------------------------------- /codeforces/297div2/E_anya_cubes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/297div2/E_anya_cubes.cpp -------------------------------------------------------------------------------- /codeforces/340div2/A_elephant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/340div2/A_elephant.cpp -------------------------------------------------------------------------------- /codeforces/340div2/B_chocolate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/340div2/B_chocolate.cpp -------------------------------------------------------------------------------- /codeforces/340div2/c_watering_flowers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/340div2/c_watering_flowers.cpp -------------------------------------------------------------------------------- /codeforces/340div2/d_poyline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/340div2/d_poyline.cpp -------------------------------------------------------------------------------- /codeforces/340div2/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/340div2/e.cpp -------------------------------------------------------------------------------- /codeforces/472A_learnfrommath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/472A_learnfrommath.c -------------------------------------------------------------------------------- /codeforces/4A_watermelon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/4A_watermelon.cpp -------------------------------------------------------------------------------- /codeforces/515A_drazil_date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/515A_drazil_date.c -------------------------------------------------------------------------------- /codeforces/515B_drazil_happy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/515B_drazil_happy.c -------------------------------------------------------------------------------- /codeforces/515C_drazil_factorial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/515C_drazil_factorial.c -------------------------------------------------------------------------------- /codeforces/520B_two_buttons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/520B_two_buttons.c -------------------------------------------------------------------------------- /codeforces/527C_glass_carving.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/527C_glass_carving.cpp -------------------------------------------------------------------------------- /codeforces/530b_string_inside_out.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/530b_string_inside_out.cpp -------------------------------------------------------------------------------- /codeforces/540a_combination_locks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/540a_combination_locks.cpp -------------------------------------------------------------------------------- /codeforces/551b_zgukistringz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/551b_zgukistringz.cpp -------------------------------------------------------------------------------- /codeforces/620B_grandfather_calculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/620B_grandfather_calculator.cpp -------------------------------------------------------------------------------- /codeforces/71A_way_too_long_words.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/71A_way_too_long_words.cpp -------------------------------------------------------------------------------- /codeforces/732A_buy_a_shovel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/732A_buy_a_shovel.cpp -------------------------------------------------------------------------------- /codeforces/732B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/732B.cpp -------------------------------------------------------------------------------- /codeforces/732C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/732C.cpp -------------------------------------------------------------------------------- /codeforces/732D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/732D.cpp -------------------------------------------------------------------------------- /codeforces/732E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/732E.cpp -------------------------------------------------------------------------------- /codeforces/733A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/733A.cpp -------------------------------------------------------------------------------- /codeforces/733B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/733B.cpp -------------------------------------------------------------------------------- /codeforces/733C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/733C.cpp -------------------------------------------------------------------------------- /codeforces/733D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/733D.cpp -------------------------------------------------------------------------------- /codeforces/733E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/733E.cpp -------------------------------------------------------------------------------- /codeforces/codecraft_count_palindromes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/codecraft_count_palindromes.c -------------------------------------------------------------------------------- /codeforces/codecraft_count_ways.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/codecraft_count_ways.c -------------------------------------------------------------------------------- /codeforces/codecraft_find_pth_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codeforces/codecraft_find_pth_number.c -------------------------------------------------------------------------------- /codeforces/in.txt: -------------------------------------------------------------------------------- 1 | 10 2 | UUDUDUUDDU -------------------------------------------------------------------------------- /codejam/2015/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2015/a.cpp -------------------------------------------------------------------------------- /codejam/2015/a_mushroom_monster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2015/a_mushroom_monster.cpp -------------------------------------------------------------------------------- /codejam/2015/b_haircut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2015/b_haircut.cpp -------------------------------------------------------------------------------- /codejam/2015/c_diktra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2015/c_diktra.cpp -------------------------------------------------------------------------------- /codejam/2015/infinite-pancakes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2015/infinite-pancakes.cpp -------------------------------------------------------------------------------- /codejam/2015/infinite-pancakes2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2015/infinite-pancakes2.cpp -------------------------------------------------------------------------------- /codejam/2015/input-output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2015/input-output.cpp -------------------------------------------------------------------------------- /codejam/2015/standing-ovation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2015/standing-ovation.cpp -------------------------------------------------------------------------------- /codejam/2016/1A/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2016/1A/A.cpp -------------------------------------------------------------------------------- /codejam/2016/1A/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2016/1A/B.cpp -------------------------------------------------------------------------------- /codejam/2016/1A/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2016/1A/C.cpp -------------------------------------------------------------------------------- /codejam/2016/1A/C2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2016/1A/C2.cpp -------------------------------------------------------------------------------- /codejam/2016/1A/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2016/1A/input.txt -------------------------------------------------------------------------------- /codejam/2016/1C/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2016/1C/A.cpp -------------------------------------------------------------------------------- /codejam/2016/1C/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2016/1C/B.cpp -------------------------------------------------------------------------------- /codejam/2016/1C/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2016/1C/C.cpp -------------------------------------------------------------------------------- /codejam/2016/1C/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2016/1C/input.txt -------------------------------------------------------------------------------- /codejam/2016/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2016/A.cpp -------------------------------------------------------------------------------- /codejam/2016/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2016/B.cpp -------------------------------------------------------------------------------- /codejam/2016/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2016/C.cpp -------------------------------------------------------------------------------- /codejam/2016/C2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2016/C2.cpp -------------------------------------------------------------------------------- /codejam/2016/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2016/D.cpp -------------------------------------------------------------------------------- /codejam/2016/D2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2016/D2.cpp -------------------------------------------------------------------------------- /codejam/2016/D_examine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2016/D_examine.py -------------------------------------------------------------------------------- /codejam/2016/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2016/input.txt -------------------------------------------------------------------------------- /codejam/2017/1A/A_alphabet_cake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2017/1A/A_alphabet_cake.cpp -------------------------------------------------------------------------------- /codejam/2017/1A/B_rata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2017/1A/B_rata.cpp -------------------------------------------------------------------------------- /codejam/2017/1B/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2017/1B/a.cpp -------------------------------------------------------------------------------- /codejam/2017/1B/b2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2017/1B/b2.cpp -------------------------------------------------------------------------------- /codejam/2017/qual/A-small-attempt0.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2017/qual/A-small-attempt0.in.txt -------------------------------------------------------------------------------- /codejam/2017/qual/C_bathroom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2017/qual/C_bathroom.cpp -------------------------------------------------------------------------------- /codejam/2017/qual/a_pancake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2017/qual/a_pancake.cpp -------------------------------------------------------------------------------- /codejam/2017/qual/b_tidy_numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/2017/qual/b_tidy_numbers.cpp -------------------------------------------------------------------------------- /codejam/practice/alien-numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/codejam/practice/alien-numbers.cpp -------------------------------------------------------------------------------- /hackerearth/crazy-kangaroo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/crazy-kangaroo.py -------------------------------------------------------------------------------- /hackerearth/dcode15/TEST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/dcode15/TEST.py -------------------------------------------------------------------------------- /hackerearth/dcode15/funny-addition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/dcode15/funny-addition.cpp -------------------------------------------------------------------------------- /hackerearth/dcode15/funny-addition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/dcode15/funny-addition.py -------------------------------------------------------------------------------- /hackerearth/dcode15/good-words.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/dcode15/good-words.cpp -------------------------------------------------------------------------------- /hackerearth/dcode15/good-words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/dcode15/good-words.py -------------------------------------------------------------------------------- /hackerearth/dcode15/good-words2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/dcode15/good-words2.py -------------------------------------------------------------------------------- /hackerearth/dcode15/input.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 2 -------------------------------------------------------------------------------- /hackerearth/dcode15/no-palgiarism.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/dcode15/no-palgiarism.cpp -------------------------------------------------------------------------------- /hackerearth/dcode15/playing-with-subs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/dcode15/playing-with-subs.cpp -------------------------------------------------------------------------------- /hackerearth/dcode15/playing-with-subs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/dcode15/playing-with-subs.py -------------------------------------------------------------------------------- /hackerearth/dcode15/quick-money.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/dcode15/quick-money.cpp -------------------------------------------------------------------------------- /hackerearth/dcode15/troublesome-children.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/dcode15/troublesome-children.cpp -------------------------------------------------------------------------------- /hackerearth/dcode15/vault-cracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/dcode15/vault-cracker.cpp -------------------------------------------------------------------------------- /hackerearth/dcode16-regex/roll_call.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/dcode16-regex/roll_call.pl -------------------------------------------------------------------------------- /hackerearth/dcode16-regex/roll_fair.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/dcode16-regex/roll_fair.pl -------------------------------------------------------------------------------- /hackerearth/dcode16-regex/test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/dcode16-regex/test.pl -------------------------------------------------------------------------------- /hackerearth/dcode16/assignment-overload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/dcode16/assignment-overload.cpp -------------------------------------------------------------------------------- /hackerearth/dcode16/dot-products.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/dcode16/dot-products.cpp -------------------------------------------------------------------------------- /hackerearth/dcode16/in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/dcode16/in.txt -------------------------------------------------------------------------------- /hackerearth/dcode16/prime-palindromes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/dcode16/prime-palindromes.cpp -------------------------------------------------------------------------------- /hackerearth/dcode16/repetition-free.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/dcode16/repetition-free.cpp -------------------------------------------------------------------------------- /hackerearth/dcode16/snake-modified.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/dcode16/snake-modified.cpp -------------------------------------------------------------------------------- /hackerearth/dhoom-4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/dhoom-4.cpp -------------------------------------------------------------------------------- /hackerearth/icpc-team-man.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/icpc-team-man.c -------------------------------------------------------------------------------- /hackerearth/infotsav16/in.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 1 2 3 | qp 4 | pr -------------------------------------------------------------------------------- /hackerearth/infotsav16/light-ryuk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/infotsav16/light-ryuk.cpp -------------------------------------------------------------------------------- /hackerearth/infotsav16/moriaty-strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/infotsav16/moriaty-strings.cpp -------------------------------------------------------------------------------- /hackerearth/infotsav16/shinchan-opti.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/infotsav16/shinchan-opti.cpp -------------------------------------------------------------------------------- /hackerearth/infotsav16/the-gardener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/infotsav16/the-gardener.cpp -------------------------------------------------------------------------------- /hackerearth/little-ashish-wife.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/little-ashish-wife.c -------------------------------------------------------------------------------- /hackerearth/march-clash-15/equivalent-strings-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/march-clash-15/equivalent-strings-2.c -------------------------------------------------------------------------------- /hackerearth/number-of-rs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/number-of-rs.c -------------------------------------------------------------------------------- /hackerearth/oz-task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/oz-task.c -------------------------------------------------------------------------------- /hackerearth/panda-xor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/panda-xor.c -------------------------------------------------------------------------------- /hackerearth/prom-night.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/prom-night.c -------------------------------------------------------------------------------- /hackerearth/prom-night.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerearth/prom-night.py -------------------------------------------------------------------------------- /hackerrank/2ndlargestnumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/2ndlargestnumber.py -------------------------------------------------------------------------------- /hackerrank/2scomplement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/2scomplement.c -------------------------------------------------------------------------------- /hackerrank/2scomplement_faster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/2scomplement_faster.c -------------------------------------------------------------------------------- /hackerrank/abbreviation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/abbreviation.cpp -------------------------------------------------------------------------------- /hackerrank/absolute_permutation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/absolute_permutation.cpp -------------------------------------------------------------------------------- /hackerrank/almost_sorted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/almost_sorted.cpp -------------------------------------------------------------------------------- /hackerrank/altchars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/altchars.c -------------------------------------------------------------------------------- /hackerrank/anagram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/anagram.c -------------------------------------------------------------------------------- /hackerrank/and-product.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/and-product.c -------------------------------------------------------------------------------- /hackerrank/angrychild.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/angrychild.c -------------------------------------------------------------------------------- /hackerrank/array-splitting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/array-splitting.cpp -------------------------------------------------------------------------------- /hackerrank/asthon-string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/asthon-string.c -------------------------------------------------------------------------------- /hackerrank/bday_gift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/bday_gift.c -------------------------------------------------------------------------------- /hackerrank/bear-and-workbook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/bear-and-workbook.cpp -------------------------------------------------------------------------------- /hackerrank/beautiful-path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/beautiful-path.cpp -------------------------------------------------------------------------------- /hackerrank/beautiful_triplets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/beautiful_triplets.cpp -------------------------------------------------------------------------------- /hackerrank/bfs_short_reach.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/bfs_short_reach.cpp -------------------------------------------------------------------------------- /hackerrank/bigger_is_greater.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/bigger_is_greater.c -------------------------------------------------------------------------------- /hackerrank/bomberman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/bomberman.cpp -------------------------------------------------------------------------------- /hackerrank/bon_appetit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/bon_appetit.cpp -------------------------------------------------------------------------------- /hackerrank/bonetrousle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/bonetrousle.cpp -------------------------------------------------------------------------------- /hackerrank/bot-clean-stochastic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/bot-clean-stochastic.py -------------------------------------------------------------------------------- /hackerrank/botclean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/botclean.c -------------------------------------------------------------------------------- /hackerrank/botclean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/botclean.cpp -------------------------------------------------------------------------------- /hackerrank/botclean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/botclean.py -------------------------------------------------------------------------------- /hackerrank/bricks-game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/bricks-game.cpp -------------------------------------------------------------------------------- /hackerrank/building-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/building-list.c -------------------------------------------------------------------------------- /hackerrank/building-list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/building-list.cpp -------------------------------------------------------------------------------- /hackerrank/bus-station.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/bus-station.cpp -------------------------------------------------------------------------------- /hackerrank/caesar-cipher-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/caesar-cipher-1.py -------------------------------------------------------------------------------- /hackerrank/candies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/candies.cpp -------------------------------------------------------------------------------- /hackerrank/cavitymap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/cavitymap.c -------------------------------------------------------------------------------- /hackerrank/choclate_fiesta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/choclate_fiesta.py -------------------------------------------------------------------------------- /hackerrank/choclatefeast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/choclatefeast.c -------------------------------------------------------------------------------- /hackerrank/cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/cipher.c -------------------------------------------------------------------------------- /hackerrank/circlecity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/circlecity.c -------------------------------------------------------------------------------- /hackerrank/class1-complexnumbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/class1-complexnumbers.py -------------------------------------------------------------------------------- /hackerrank/clique.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/clique.cpp -------------------------------------------------------------------------------- /hackerrank/closest-number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/closest-number.py -------------------------------------------------------------------------------- /hackerrank/coin_change.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/coin_change.cpp -------------------------------------------------------------------------------- /hackerrank/common_child.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/common_child.c -------------------------------------------------------------------------------- /hackerrank/compare-the-triplets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/compare-the-triplets.py -------------------------------------------------------------------------------- /hackerrank/connected-cell-in-a-grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/connected-cell-in-a-grid.cpp -------------------------------------------------------------------------------- /hackerrank/connecting_towns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/connecting_towns.c -------------------------------------------------------------------------------- /hackerrank/correct-loop-variant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/correct-loop-variant.c -------------------------------------------------------------------------------- /hackerrank/count-lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/count-lock.cpp -------------------------------------------------------------------------------- /hackerrank/countergame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/countergame.c -------------------------------------------------------------------------------- /hackerrank/counting_sort1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/counting_sort1.c -------------------------------------------------------------------------------- /hackerrank/counting_sort2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/counting_sort2.c -------------------------------------------------------------------------------- /hackerrank/counting_sort3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/counting_sort3.c -------------------------------------------------------------------------------- /hackerrank/countluck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/countluck.cpp -------------------------------------------------------------------------------- /hackerrank/cutthe_steps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/cutthe_steps.c -------------------------------------------------------------------------------- /hackerrank/cutthetree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/cutthetree.cpp -------------------------------------------------------------------------------- /hackerrank/cutting_boards.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/cutting_boards.c -------------------------------------------------------------------------------- /hackerrank/cutting_boards_recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/cutting_boards_recursion.c -------------------------------------------------------------------------------- /hackerrank/demidenko-farmer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/demidenko-farmer.c -------------------------------------------------------------------------------- /hackerrank/detect-html-tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/detect-html-tags.py -------------------------------------------------------------------------------- /hackerrank/diagonal_difference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/diagonal_difference.py -------------------------------------------------------------------------------- /hackerrank/die-hard-3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/die-hard-3.cpp -------------------------------------------------------------------------------- /hackerrank/dijkstra_short_reach.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/dijkstra_short_reach.cpp -------------------------------------------------------------------------------- /hackerrank/divisible_sum_pairs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/divisible_sum_pairs.cpp -------------------------------------------------------------------------------- /hackerrank/diwalilights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/diwalilights.c -------------------------------------------------------------------------------- /hackerrank/easy-sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/easy-sum.c -------------------------------------------------------------------------------- /hackerrank/encryption.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/encryption.c -------------------------------------------------------------------------------- /hackerrank/equal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/equal.cpp -------------------------------------------------------------------------------- /hackerrank/euler-criter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/euler-criter.c -------------------------------------------------------------------------------- /hackerrank/even-odd-query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/even-odd-query.py -------------------------------------------------------------------------------- /hackerrank/eventree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/eventree.c -------------------------------------------------------------------------------- /hackerrank/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/exceptions.py -------------------------------------------------------------------------------- /hackerrank/fair-cut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/fair-cut.cpp -------------------------------------------------------------------------------- /hackerrank/fair_rations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/fair_rations.cpp -------------------------------------------------------------------------------- /hackerrank/fibonacci-modified.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/fibonacci-modified.c -------------------------------------------------------------------------------- /hackerrank/fibonacci-modified.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/fibonacci-modified.py -------------------------------------------------------------------------------- /hackerrank/filljars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/filljars.c -------------------------------------------------------------------------------- /hackerrank/find-maximum-index-product.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/find-maximum-index-product.cpp -------------------------------------------------------------------------------- /hackerrank/find-point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/find-point.py -------------------------------------------------------------------------------- /hackerrank/find_digits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/find_digits.c -------------------------------------------------------------------------------- /hackerrank/find_fibonacci_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/find_fibonacci_matrix.cpp -------------------------------------------------------------------------------- /hackerrank/finddigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/finddigit.c -------------------------------------------------------------------------------- /hackerrank/findthemedian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/findthemedian.c -------------------------------------------------------------------------------- /hackerrank/flatland_space_stations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/flatland_space_stations.cpp -------------------------------------------------------------------------------- /hackerrank/flipping_the_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/flipping_the_matrix.cpp -------------------------------------------------------------------------------- /hackerrank/flippingbits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/flippingbits.c -------------------------------------------------------------------------------- /hackerrank/flowers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/flowers.c -------------------------------------------------------------------------------- /hackerrank/floyd-city-of-building.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/floyd-city-of-building.cpp -------------------------------------------------------------------------------- /hackerrank/fraudelent-activity-notifications.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/fraudelent-activity-notifications.cpp -------------------------------------------------------------------------------- /hackerrank/full_counting_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/full_counting_sort.c -------------------------------------------------------------------------------- /hackerrank/full_counting_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/full_counting_sort.cpp -------------------------------------------------------------------------------- /hackerrank/funny-strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/funny-strings.cpp -------------------------------------------------------------------------------- /hackerrank/gameofthrones1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/gameofthrones1.c -------------------------------------------------------------------------------- /hackerrank/gemstones.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/gemstones.c -------------------------------------------------------------------------------- /hackerrank/grid-challenge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/grid-challenge.c -------------------------------------------------------------------------------- /hackerrank/grid-search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/grid-search.cpp -------------------------------------------------------------------------------- /hackerrank/grid-walking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/grid-walking.cpp -------------------------------------------------------------------------------- /hackerrank/grid_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/grid_search.py -------------------------------------------------------------------------------- /hackerrank/hackerrank-tweets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/hackerrank-tweets.py -------------------------------------------------------------------------------- /hackerrank/hallowen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/hallowen.c -------------------------------------------------------------------------------- /hackerrank/handshake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/handshake.c -------------------------------------------------------------------------------- /hackerrank/html-parser-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/html-parser-1.py -------------------------------------------------------------------------------- /hackerrank/html-parser-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/html-parser-2.py -------------------------------------------------------------------------------- /hackerrank/ice_cream_p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/ice_cream_p.c -------------------------------------------------------------------------------- /hackerrank/icmacpcteam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/icmacpcteam.c -------------------------------------------------------------------------------- /hackerrank/in.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 0 8 4 12 2 -------------------------------------------------------------------------------- /hackerrank/input07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/input07.txt -------------------------------------------------------------------------------- /hackerrank/insertion-advancedanal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/insertion-advancedanal.c -------------------------------------------------------------------------------- /hackerrank/insertion-part1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/insertion-part1.c -------------------------------------------------------------------------------- /hackerrank/insertion-part2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/insertion-part2.c -------------------------------------------------------------------------------- /hackerrank/insertion_sort_advanced.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/insertion_sort_advanced.cpp -------------------------------------------------------------------------------- /hackerrank/isfibo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/isfibo.c -------------------------------------------------------------------------------- /hackerrank/jim_orders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/jim_orders.cpp -------------------------------------------------------------------------------- /hackerrank/journey_to_moon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/journey_to_moon.c -------------------------------------------------------------------------------- /hackerrank/journey_to_moon_graphs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/journey_to_moon_graphs.c -------------------------------------------------------------------------------- /hackerrank/jumping_on_clouds_revisisted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/jumping_on_clouds_revisisted.cpp -------------------------------------------------------------------------------- /hackerrank/jumping_on_the_clouds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/jumping_on_the_clouds.cpp -------------------------------------------------------------------------------- /hackerrank/k-candy-store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/k-candy-store.cpp -------------------------------------------------------------------------------- /hackerrank/kangaroo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/kangaroo.cpp -------------------------------------------------------------------------------- /hackerrank/kaprekar_numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/kaprekar_numbers.py -------------------------------------------------------------------------------- /hackerrank/kevin-expected-value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/kevin-expected-value.c -------------------------------------------------------------------------------- /hackerrank/keyword_transp_cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/keyword_transp_cipher.c -------------------------------------------------------------------------------- /hackerrank/knapsack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/knapsack.c -------------------------------------------------------------------------------- /hackerrank/kruskalmstrsub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/kruskalmstrsub.cpp -------------------------------------------------------------------------------- /hackerrank/largest-rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/largest-rectangle.cpp -------------------------------------------------------------------------------- /hackerrank/larrys-array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/larrys-array.cpp -------------------------------------------------------------------------------- /hackerrank/lexicographic_paths.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/lexicographic_paths.c -------------------------------------------------------------------------------- /hackerrank/library-fine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/library-fine.py -------------------------------------------------------------------------------- /hackerrank/little-panda-power.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/little-panda-power.cpp -------------------------------------------------------------------------------- /hackerrank/little_ashish_huge_donation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/little_ashish_huge_donation.cpp -------------------------------------------------------------------------------- /hackerrank/lonelyint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/lonelyint.c -------------------------------------------------------------------------------- /hackerrank/longest_common_subsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/longest_common_subsequence.cpp -------------------------------------------------------------------------------- /hackerrank/longest_increasing_subsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/longest_increasing_subsequence.cpp -------------------------------------------------------------------------------- /hackerrank/longest_increasing_subsequent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/longest_increasing_subsequent.c -------------------------------------------------------------------------------- /hackerrank/longest_increasing_subsequent_backwards.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/longest_increasing_subsequent_backwards.c -------------------------------------------------------------------------------- /hackerrank/lovelettermys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/lovelettermys.c -------------------------------------------------------------------------------- /hackerrank/makeitanagram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/makeitanagram.c -------------------------------------------------------------------------------- /hackerrank/manasa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/manasa.c -------------------------------------------------------------------------------- /hackerrank/manasalovesmaths.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/manasalovesmaths.c -------------------------------------------------------------------------------- /hackerrank/mandragora-forest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/mandragora-forest.cpp -------------------------------------------------------------------------------- /hackerrank/mark_toys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/mark_toys.c -------------------------------------------------------------------------------- /hackerrank/matrix-rotation-algo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/matrix-rotation-algo.cpp -------------------------------------------------------------------------------- /hackerrank/maximise-it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/maximise-it.py -------------------------------------------------------------------------------- /hackerrank/maximisesum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/maximisesum.cpp -------------------------------------------------------------------------------- /hackerrank/maximum-perimeter-triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/maximum-perimeter-triangle.cpp -------------------------------------------------------------------------------- /hackerrank/maximum-subarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/maximum-subarray.c -------------------------------------------------------------------------------- /hackerrank/maxxor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/maxxor.c -------------------------------------------------------------------------------- /hackerrank/minimum_distances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/minimum_distances.cpp -------------------------------------------------------------------------------- /hackerrank/minimum_draws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/minimum_draws.c -------------------------------------------------------------------------------- /hackerrank/missing_numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/missing_numbers.c -------------------------------------------------------------------------------- /hackerrank/most-commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/most-commons.py -------------------------------------------------------------------------------- /hackerrank/mr-k-marsh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/mr-k-marsh.cpp -------------------------------------------------------------------------------- /hackerrank/ncr-table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/ncr-table.cpp -------------------------------------------------------------------------------- /hackerrank/ncr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/ncr.c -------------------------------------------------------------------------------- /hackerrank/new_year_chaos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/new_year_chaos.cpp -------------------------------------------------------------------------------- /hackerrank/no-idea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/no-idea.py -------------------------------------------------------------------------------- /hackerrank/non_divisible_subset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/non_divisible_subset.cpp -------------------------------------------------------------------------------- /hackerrank/pairs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/pairs.cpp -------------------------------------------------------------------------------- /hackerrank/pairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/pairs.py -------------------------------------------------------------------------------- /hackerrank/palindromeindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/palindromeindex.c -------------------------------------------------------------------------------- /hackerrank/palindromeindex_optimized.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/palindromeindex_optimized.c -------------------------------------------------------------------------------- /hackerrank/pangrams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/pangrams.c -------------------------------------------------------------------------------- /hackerrank/permutation_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/permutation_game.c -------------------------------------------------------------------------------- /hackerrank/picking-cards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/picking-cards.cpp -------------------------------------------------------------------------------- /hackerrank/piling-up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/piling-up.py -------------------------------------------------------------------------------- /hackerrank/playingwithnumbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/playingwithnumbers.c -------------------------------------------------------------------------------- /hackerrank/plus-minus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/plus-minus.py -------------------------------------------------------------------------------- /hackerrank/possible_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/possible_path.py -------------------------------------------------------------------------------- /hackerrank/power-calculation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/power-calculation.c -------------------------------------------------------------------------------- /hackerrank/power-of-large-numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/power-of-large-numbers.py -------------------------------------------------------------------------------- /hackerrank/prismstsub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/prismstsub.cpp -------------------------------------------------------------------------------- /hackerrank/python-sort-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/python-sort-data.py -------------------------------------------------------------------------------- /hackerrank/quicksort2sorting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/quicksort2sorting.c -------------------------------------------------------------------------------- /hackerrank/quicksort3inplace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/quicksort3inplace.c -------------------------------------------------------------------------------- /hackerrank/rectangular-game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/rectangular-game.py -------------------------------------------------------------------------------- /hackerrank/redjohnisback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/redjohnisback.c -------------------------------------------------------------------------------- /hackerrank/regex-substitution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/regex-substitution.py -------------------------------------------------------------------------------- /hackerrank/repeated_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/repeated_string.cpp -------------------------------------------------------------------------------- /hackerrank/reverse_shuffle_merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/reverse_shuffle_merge.c -------------------------------------------------------------------------------- /hackerrank/reversegame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/reversegame.cpp -------------------------------------------------------------------------------- /hackerrank/running_time_algo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/running_time_algo.c -------------------------------------------------------------------------------- /hackerrank/runningtimeofquicksort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/runningtimeofquicksort.c -------------------------------------------------------------------------------- /hackerrank/sansa_xor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/sansa_xor.c -------------------------------------------------------------------------------- /hackerrank/save_the_prisoner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/save_the_prisoner.cpp -------------------------------------------------------------------------------- /hackerrank/saveprincess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/saveprincess.c -------------------------------------------------------------------------------- /hackerrank/saveprincess2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/saveprincess2.c -------------------------------------------------------------------------------- /hackerrank/security-beijective-functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/security-beijective-functions.py -------------------------------------------------------------------------------- /hackerrank/security-inverse-function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/security-inverse-function.py -------------------------------------------------------------------------------- /hackerrank/security-involution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/security-involution.py -------------------------------------------------------------------------------- /hackerrank/security-key-spaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/security-key-spaces.py -------------------------------------------------------------------------------- /hackerrank/security-message-text-ciphertext-space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/security-message-text-ciphertext-space.py -------------------------------------------------------------------------------- /hackerrank/security-tut-permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/security-tut-permutation.py -------------------------------------------------------------------------------- /hackerrank/sher_sq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/sher_sq.c -------------------------------------------------------------------------------- /hackerrank/sherlock-divisors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/sherlock-divisors.cpp -------------------------------------------------------------------------------- /hackerrank/sherlock-moving-tiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/sherlock-moving-tiles.cpp -------------------------------------------------------------------------------- /hackerrank/sherlock-square.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/sherlock-square.c -------------------------------------------------------------------------------- /hackerrank/sherlock_and_pairs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/sherlock_and_pairs.c -------------------------------------------------------------------------------- /hackerrank/sherlock_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/sherlock_array.c -------------------------------------------------------------------------------- /hackerrank/sherlock_beast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/sherlock_beast.c -------------------------------------------------------------------------------- /hackerrank/sherlock_couting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/sherlock_couting.c -------------------------------------------------------------------------------- /hackerrank/sherlock_gcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/sherlock_gcd.c -------------------------------------------------------------------------------- /hackerrank/sherlock_minimax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/sherlock_minimax.cpp -------------------------------------------------------------------------------- /hackerrank/sherlock_permutations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/sherlock_permutations.py -------------------------------------------------------------------------------- /hackerrank/sherlock_queries.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/sherlock_queries.c -------------------------------------------------------------------------------- /hackerrank/sherlock_queries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/sherlock_queries.cpp -------------------------------------------------------------------------------- /hackerrank/sherlock_queries_strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/sherlock_queries_strings.c -------------------------------------------------------------------------------- /hackerrank/sherlock_watson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/sherlock_watson.c -------------------------------------------------------------------------------- /hackerrank/smith-number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/smith-number.cpp -------------------------------------------------------------------------------- /hackerrank/snakes_ladders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/snakes_ladders.c -------------------------------------------------------------------------------- /hackerrank/snakes_ladders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/snakes_ladders.cpp -------------------------------------------------------------------------------- /hackerrank/song-of-pi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/song-of-pi.cpp -------------------------------------------------------------------------------- /hackerrank/split-numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/split-numbers.py -------------------------------------------------------------------------------- /hackerrank/staircase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/staircase.py -------------------------------------------------------------------------------- /hackerrank/stockmax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/stockmax.c -------------------------------------------------------------------------------- /hackerrank/strange-grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/strange-grid.cpp -------------------------------------------------------------------------------- /hackerrank/strange_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/strange_code.cpp -------------------------------------------------------------------------------- /hackerrank/subset-component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/subset-component.cpp -------------------------------------------------------------------------------- /hackerrank/summing-pieces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/summing-pieces.cpp -------------------------------------------------------------------------------- /hackerrank/summing-the-n-series.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/summing-the-n-series.c -------------------------------------------------------------------------------- /hackerrank/taum-bday.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/taum-bday.c -------------------------------------------------------------------------------- /hackerrank/the-bidding-game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/the-bidding-game.py -------------------------------------------------------------------------------- /hackerrank/the-minion-game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/the-minion-game.py -------------------------------------------------------------------------------- /hackerrank/the_time_in_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/the_time_in_words.py -------------------------------------------------------------------------------- /hackerrank/time-conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/time-conversion.py -------------------------------------------------------------------------------- /hackerrank/triangle-numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/triangle-numbers.cpp -------------------------------------------------------------------------------- /hackerrank/tutorial-intro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/tutorial-intro.c -------------------------------------------------------------------------------- /hackerrank/two-strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/two-strings.cpp -------------------------------------------------------------------------------- /hackerrank/two_pluses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/two_pluses.cpp -------------------------------------------------------------------------------- /hackerrank/twoarrays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/twoarrays.c -------------------------------------------------------------------------------- /hackerrank/utopia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/utopia.c -------------------------------------------------------------------------------- /hackerrank/valid-pan-format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/valid-pan-format.cpp -------------------------------------------------------------------------------- /hackerrank/wetshark-42.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/wetshark-42.cpp -------------------------------------------------------------------------------- /hackerrank/whats_next.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/whats_next.cpp -------------------------------------------------------------------------------- /hackerrank/word-order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/word-order.py -------------------------------------------------------------------------------- /hackerrank/xor_sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/xor_sequence.cpp -------------------------------------------------------------------------------- /hackerrank/zipped.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank/zipped.py -------------------------------------------------------------------------------- /hackerrank_contests/101hack33/avg-modulo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/101hack33/avg-modulo.c -------------------------------------------------------------------------------- /hackerrank_contests/101hack33/avg-modulo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/101hack33/avg-modulo.cpp -------------------------------------------------------------------------------- /hackerrank_contests/101hack33/longest-path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/101hack33/longest-path.cpp -------------------------------------------------------------------------------- /hackerrank_contests/101hack33/max-sum-subarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/101hack33/max-sum-subarray.cpp -------------------------------------------------------------------------------- /hackerrank_contests/101hackjan/angryprof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/101hackjan/angryprof.c -------------------------------------------------------------------------------- /hackerrank_contests/101hackjan/maximizesum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/101hackjan/maximizesum.c -------------------------------------------------------------------------------- /hackerrank_contests/101hackjan/ms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/101hackjan/ms.c -------------------------------------------------------------------------------- /hackerrank_contests/101hackmarch/devu-minimize-runs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/101hackmarch/devu-minimize-runs.cpp -------------------------------------------------------------------------------- /hackerrank_contests/101hackmarch/girl-spirits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/101hackmarch/girl-spirits.cpp -------------------------------------------------------------------------------- /hackerrank_contests/2014_w12/chief_hopper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/2014_w12/chief_hopper.c -------------------------------------------------------------------------------- /hackerrank_contests/2014_w12/priyanka_toys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/2014_w12/priyanka_toys.c -------------------------------------------------------------------------------- /hackerrank_contests/amalthea_14/_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/amalthea_14/_test.c -------------------------------------------------------------------------------- /hackerrank_contests/amalthea_14/ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/amalthea_14/ap.c -------------------------------------------------------------------------------- /hackerrank_contests/amalthea_14/fz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/amalthea_14/fz.c -------------------------------------------------------------------------------- /hackerrank_contests/amalthea_14/nod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/amalthea_14/nod.c -------------------------------------------------------------------------------- /hackerrank_contests/amalthea_14/pwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/amalthea_14/pwd.c -------------------------------------------------------------------------------- /hackerrank_contests/amalthea_14/pwd_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/amalthea_14/pwd_a.c -------------------------------------------------------------------------------- /hackerrank_contests/amalthea_14/s1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/amalthea_14/s1.c -------------------------------------------------------------------------------- /hackerrank_contests/amalthea_14/seq2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/amalthea_14/seq2.c -------------------------------------------------------------------------------- /hackerrank_contests/amalthea_14/sr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/amalthea_14/sr.c -------------------------------------------------------------------------------- /hackerrank_contests/amalthea_14/strrev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/amalthea_14/strrev.c -------------------------------------------------------------------------------- /hackerrank_contests/codedash/birthday_gift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/codedash/birthday_gift.c -------------------------------------------------------------------------------- /hackerrank_contests/codedash/birthday_gift_opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/codedash/birthday_gift_opt.c -------------------------------------------------------------------------------- /hackerrank_contests/codedash/dash1 - closure_password.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/codedash/dash1 - closure_password.c -------------------------------------------------------------------------------- /hackerrank_contests/codedash/dash2 - squares.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/codedash/dash2 - squares.c -------------------------------------------------------------------------------- /hackerrank_contests/codedash/dash4 - circularmatrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/codedash/dash4 - circularmatrix.c -------------------------------------------------------------------------------- /hackerrank_contests/codedash/dash7 - restaurent2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/codedash/dash7 - restaurent2.c -------------------------------------------------------------------------------- /hackerrank_contests/codedash/palindrome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/codedash/palindrome.c -------------------------------------------------------------------------------- /hackerrank_contests/codedash/quicksort1partition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/codedash/quicksort1partition.c -------------------------------------------------------------------------------- /hackerrank_contests/countercode/campers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/countercode/campers.cpp -------------------------------------------------------------------------------- /hackerrank_contests/countercode/deg-of-dirtiness.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/countercode/deg-of-dirtiness.cpp -------------------------------------------------------------------------------- /hackerrank_contests/countercode/imba.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/countercode/imba.cpp -------------------------------------------------------------------------------- /hackerrank_contests/countercode/poisonous-plants-naive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/countercode/poisonous-plants-naive.cpp -------------------------------------------------------------------------------- /hackerrank_contests/countercode/poisonous-plants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/countercode/poisonous-plants.cpp -------------------------------------------------------------------------------- /hackerrank_contests/epiccode15/begin-end.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/epiccode15/begin-end.cpp -------------------------------------------------------------------------------- /hackerrank_contests/epiccode15/dance-in-pairs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/epiccode15/dance-in-pairs.cpp -------------------------------------------------------------------------------- /hackerrank_contests/epiccode15/epic-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/epiccode15/epic-tree.cpp -------------------------------------------------------------------------------- /hackerrank_contests/epiccode15/line-segments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/epiccode15/line-segments.cpp -------------------------------------------------------------------------------- /hackerrank_contests/epiccode15/line-segments2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/epiccode15/line-segments2.cpp -------------------------------------------------------------------------------- /hackerrank_contests/epiccode15/perfect-hiring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/epiccode15/perfect-hiring.cpp -------------------------------------------------------------------------------- /hackerrank_contests/epiccode15/set-queries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/epiccode15/set-queries.cpp -------------------------------------------------------------------------------- /hackerrank_contests/epiccode15/square-array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/epiccode15/square-array.c -------------------------------------------------------------------------------- /hackerrank_contests/epiccode15/square-array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/epiccode15/square-array.cpp -------------------------------------------------------------------------------- /hackerrank_contests/epiccode15/white-falcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/epiccode15/white-falcon.cpp -------------------------------------------------------------------------------- /hackerrank_contests/iiitv.init-17-1/cersei_seven_kingdoms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/iiitv.init-17-1/cersei_seven_kingdoms.cpp -------------------------------------------------------------------------------- /hackerrank_contests/iiitv.init-17-1/in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/iiitv.init-17-1/in.txt -------------------------------------------------------------------------------- /hackerrank_contests/iiitv.init-17-1/night_king_tickets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/iiitv.init-17-1/night_king_tickets.cpp -------------------------------------------------------------------------------- /hackerrank_contests/iiitv.short/good_vs_bad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/iiitv.short/good_vs_bad.cpp -------------------------------------------------------------------------------- /hackerrank_contests/iiitv.short/in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/iiitv.short/in.txt -------------------------------------------------------------------------------- /hackerrank_contests/iiitv.short/input00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/iiitv.short/input00.txt -------------------------------------------------------------------------------- /hackerrank_contests/iiitv.short/johns_new_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/iiitv.short/johns_new_game.cpp -------------------------------------------------------------------------------- /hackerrank_contests/iiitv.short/nawabs_research_katara.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/iiitv.short/nawabs_research_katara.cpp -------------------------------------------------------------------------------- /hackerrank_contests/iiitv.short/om_prakash_bells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/iiitv.short/om_prakash_bells.py -------------------------------------------------------------------------------- /hackerrank_contests/iiitv.short/prof_graph_paper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/iiitv.short/prof_graph_paper.cpp -------------------------------------------------------------------------------- /hackerrank_contests/project_euler+/1-3and5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/project_euler+/1-3and5.c -------------------------------------------------------------------------------- /hackerrank_contests/project_euler+/10summationofprimes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/project_euler+/10summationofprimes.c -------------------------------------------------------------------------------- /hackerrank_contests/project_euler+/4smallestmultiple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/project_euler+/4smallestmultiple.c -------------------------------------------------------------------------------- /hackerrank_contests/project_euler+/6sumsquares.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/project_euler+/6sumsquares.c -------------------------------------------------------------------------------- /hackerrank_contests/project_euler+/7_1001prime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/project_euler+/7_1001prime.c -------------------------------------------------------------------------------- /hackerrank_contests/project_euler+/8largestprod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/project_euler+/8largestprod.c -------------------------------------------------------------------------------- /hackerrank_contests/project_euler+/9specialpythagorean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/project_euler+/9specialpythagorean.c -------------------------------------------------------------------------------- /hackerrank_contests/project_euler+/evenfibonacci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/project_euler+/evenfibonacci.c -------------------------------------------------------------------------------- /hackerrank_contests/project_euler+/largestpalindrome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/project_euler+/largestpalindrome.c -------------------------------------------------------------------------------- /hackerrank_contests/project_euler+/largestprimefact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/project_euler+/largestprimefact.c -------------------------------------------------------------------------------- /hackerrank_contests/pythonista_practise/calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/pythonista_practise/calculator.py -------------------------------------------------------------------------------- /hackerrank_contests/pythonista_practise/decorators2-namedir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/pythonista_practise/decorators2-namedir.py -------------------------------------------------------------------------------- /hackerrank_contests/pythonista_practise/filter-validemail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/pythonista_practise/filter-validemail.py -------------------------------------------------------------------------------- /hackerrank_contests/pythonista_practise/find_percent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/pythonista_practise/find_percent.py -------------------------------------------------------------------------------- /hackerrank_contests/pythonista_practise/findastring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/pythonista_practise/findastring.py -------------------------------------------------------------------------------- /hackerrank_contests/pythonista_practise/leibniz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/pythonista_practise/leibniz.py -------------------------------------------------------------------------------- /hackerrank_contests/pythonista_practise/list-comprehension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/pythonista_practise/list-comprehension.py -------------------------------------------------------------------------------- /hackerrank_contests/pythonista_practise/map_lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/pythonista_practise/map_lambda.py -------------------------------------------------------------------------------- /hackerrank_contests/pythonista_practise/nestedlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/pythonista_practise/nestedlist.py -------------------------------------------------------------------------------- /hackerrank_contests/pythonista_practise/regex1-validphonenum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/pythonista_practise/regex1-validphonenum.py -------------------------------------------------------------------------------- /hackerrank_contests/pythonista_practise/regex2-validromannumbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/pythonista_practise/regex2-validromannumbers.py -------------------------------------------------------------------------------- /hackerrank_contests/pythonista_practise/sets_symmetricdifference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/pythonista_practise/sets_symmetricdifference.py -------------------------------------------------------------------------------- /hackerrank_contests/pythonista_practise/standard_mobile_numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/pythonista_practise/standard_mobile_numbers.py -------------------------------------------------------------------------------- /hackerrank_contests/pythonista_practise/trignometric_ratios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/pythonista_practise/trignometric_ratios.py -------------------------------------------------------------------------------- /hackerrank_contests/pythonista_practise/xml1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/pythonista_practise/xml1.py -------------------------------------------------------------------------------- /hackerrank_contests/pythonista_practise/xml2-maxdepth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/pythonista_practise/xml2-maxdepth.py -------------------------------------------------------------------------------- /hackerrank_contests/quora_hack14/1archery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/quora_hack14/1archery.c -------------------------------------------------------------------------------- /hackerrank_contests/w25/append-delete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/w25/append-delete.cpp -------------------------------------------------------------------------------- /hackerrank_contests/w25/baby-step-giant-step.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/w25/baby-step-giant-step.cpp -------------------------------------------------------------------------------- /hackerrank_contests/w25/between2sets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/w25/between2sets.cpp -------------------------------------------------------------------------------- /hackerrank_contests/w25/dag-queries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/w25/dag-queries.cpp -------------------------------------------------------------------------------- /hackerrank_contests/w25/good-point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/w25/good-point.cpp -------------------------------------------------------------------------------- /hackerrank_contests/w25/min-cyclic-shift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/w25/min-cyclic-shift.cpp -------------------------------------------------------------------------------- /hackerrank_contests/w25/stone-division-com.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/w25/stone-division-com.cpp -------------------------------------------------------------------------------- /hackerrank_contests/w25/stone-division.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/w25/stone-division.cpp -------------------------------------------------------------------------------- /hackerrank_contests/week14/number-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/week14/number-list.c -------------------------------------------------------------------------------- /hackerrank_contests/week14/superman-celeb-diwali.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/week14/superman-celeb-diwali.c -------------------------------------------------------------------------------- /hackerrank_contests/week14/worst-permutation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/week14/worst-permutation.c -------------------------------------------------------------------------------- /hackerrank_contests/world_code_sprint/Emas-supercomputer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/world_code_sprint/Emas-supercomputer.cpp -------------------------------------------------------------------------------- /hackerrank_contests/world_code_sprint/alien-flowers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/world_code_sprint/alien-flowers.cpp -------------------------------------------------------------------------------- /hackerrank_contests/world_code_sprint/alien-flowers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/world_code_sprint/alien-flowers.txt -------------------------------------------------------------------------------- /hackerrank_contests/world_code_sprint/buildastring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/world_code_sprint/buildastring.cpp -------------------------------------------------------------------------------- /hackerrank_contests/world_code_sprint/flatland_space.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/world_code_sprint/flatland_space.cpp -------------------------------------------------------------------------------- /hackerrank_contests/world_code_sprint/save_our_ship.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/world_code_sprint/save_our_ship.cpp -------------------------------------------------------------------------------- /hackerrank_contests/world_cup2015/swapping-bridges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/hackerrank_contests/world_cup2015/swapping-bridges.cpp -------------------------------------------------------------------------------- /leetcode/easy/find-center-of-star-graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/leetcode/easy/find-center-of-star-graph.cpp -------------------------------------------------------------------------------- /leetcode/easy/palindrome-number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/leetcode/easy/palindrome-number.c -------------------------------------------------------------------------------- /leetcode/easy/roman-to-integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/leetcode/easy/roman-to-integer.cpp -------------------------------------------------------------------------------- /leetcode/easy/two-sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/leetcode/easy/two-sum.cpp -------------------------------------------------------------------------------- /leetcode/hard/median-of-two-sorted-arrays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/leetcode/hard/median-of-two-sorted-arrays.ts -------------------------------------------------------------------------------- /leetcode/medium/add-two-numbers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/leetcode/medium/add-two-numbers.ts -------------------------------------------------------------------------------- /leetcode/medium/binary-search-tree-to-greater-sum-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/leetcode/medium/binary-search-tree-to-greater-sum-tree.cpp -------------------------------------------------------------------------------- /leetcode/medium/grumpy-bookstore-owner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/leetcode/medium/grumpy-bookstore-owner.cpp -------------------------------------------------------------------------------- /leetcode/medium/jump-game-ii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/leetcode/medium/jump-game-ii.cpp -------------------------------------------------------------------------------- /leetcode/medium/letter-combinations-of-a-phone-number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/leetcode/medium/letter-combinations-of-a-phone-number.cpp -------------------------------------------------------------------------------- /leetcode/medium/longest-continuous-subarray-with-absolute-diff-less-than-or-equal-to-limit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/leetcode/medium/longest-continuous-subarray-with-absolute-diff-less-than-or-equal-to-limit.cpp -------------------------------------------------------------------------------- /leetcode/medium/longest-palindromic-substring.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/leetcode/medium/longest-palindromic-substring.ts -------------------------------------------------------------------------------- /leetcode/medium/longest-substring-without-repeating-characters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/leetcode/medium/longest-substring-without-repeating-characters.ts -------------------------------------------------------------------------------- /leetcode/medium/merge-intervals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/leetcode/medium/merge-intervals.cpp -------------------------------------------------------------------------------- /leetcode/medium/minimum-area-rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/leetcode/medium/minimum-area-rectangle.cpp -------------------------------------------------------------------------------- /leetcode/medium/minimum-number-of-days-to-make-m-bouquets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/leetcode/medium/minimum-number-of-days-to-make-m-bouquets.ts -------------------------------------------------------------------------------- /leetcode/medium/reverse-integer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/leetcode/medium/reverse-integer.ts -------------------------------------------------------------------------------- /other_contests/codegladiators16/easy1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/other_contests/codegladiators16/easy1.cpp -------------------------------------------------------------------------------- /other_contests/codekaze-jan/a_peaceful_world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/other_contests/codekaze-jan/a_peaceful_world.cpp -------------------------------------------------------------------------------- /other_contests/codekaze-jan/near_vs_mello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/other_contests/codekaze-jan/near_vs_mello.cpp -------------------------------------------------------------------------------- /other_contests/codekaze-jan/ryuk_love_for_apples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/other_contests/codekaze-jan/ryuk_love_for_apples.cpp -------------------------------------------------------------------------------- /other_contests/codevita-r2-17/input.txt: -------------------------------------------------------------------------------- 1 | asdj 2 | kjdf 3 | dfkdf 4 | kkkl 5 | -------------------------------------------------------------------------------- /other_contests/codevita-r2-17/q1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/other_contests/codevita-r2-17/q1.cpp -------------------------------------------------------------------------------- /other_contests/codevita-r2-17/q2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/other_contests/codevita-r2-17/q2.cpp -------------------------------------------------------------------------------- /other_contests/codevita-r2-17/q3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/other_contests/codevita-r2-17/q3.cpp -------------------------------------------------------------------------------- /other_contests/codevita-r2-17/q6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/other_contests/codevita-r2-17/q6.cpp -------------------------------------------------------------------------------- /other_contests/codevita-r2-17/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/other_contests/codevita-r2-17/test.cpp -------------------------------------------------------------------------------- /other_contests/codevita-r2-17/test2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/other_contests/codevita-r2-17/test2.cpp -------------------------------------------------------------------------------- /other_contests/codevita-r2-17/testx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/other_contests/codevita-r2-17/testx.cpp -------------------------------------------------------------------------------- /other_contests/codility_test_toptal/msw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/other_contests/codility_test_toptal/msw.txt -------------------------------------------------------------------------------- /other_contests/codility_test_toptal/other/task1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/other_contests/codility_test_toptal/other/task1.cpp -------------------------------------------------------------------------------- /other_contests/codility_test_toptal/other/task2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/other_contests/codility_test_toptal/other/task2.cpp -------------------------------------------------------------------------------- /other_contests/codility_test_toptal/other/task3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/other_contests/codility_test_toptal/other/task3.cpp -------------------------------------------------------------------------------- /other_contests/codility_test_toptal/q1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/other_contests/codility_test_toptal/q1.cpp -------------------------------------------------------------------------------- /other_contests/codility_test_toptal/q2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/other_contests/codility_test_toptal/q2.py -------------------------------------------------------------------------------- /other_contests/codility_test_toptal/some_other/some_q3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/other_contests/codility_test_toptal/some_other/some_q3.cpp -------------------------------------------------------------------------------- /other_contests/codility_test_toptal/task1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/other_contests/codility_test_toptal/task1.cpp -------------------------------------------------------------------------------- /other_contests/codility_test_toptal/task2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/other_contests/codility_test_toptal/task2.cpp -------------------------------------------------------------------------------- /other_contests/codility_test_toptal/task3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/other_contests/codility_test_toptal/task3.cpp -------------------------------------------------------------------------------- /other_contests/codility_test_toptal/trial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/other_contests/codility_test_toptal/trial.cpp -------------------------------------------------------------------------------- /other_contests/fbhckup-qual-2016/in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/other_contests/fbhckup-qual-2016/in.txt -------------------------------------------------------------------------------- /other_contests/fbhckup-qual-2016/lazy_loading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/other_contests/fbhckup-qual-2016/lazy_loading.cpp -------------------------------------------------------------------------------- /other_contests/fbhckup-qual-2016/lazy_loading.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/other_contests/fbhckup-qual-2016/lazy_loading.txt -------------------------------------------------------------------------------- /other_contests/fbhckup-qual-2016/progress_pie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/other_contests/fbhckup-qual-2016/progress_pie.cpp -------------------------------------------------------------------------------- /other_contests/fbhckup-qual-2016/progress_pie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/other_contests/fbhckup-qual-2016/progress_pie.txt -------------------------------------------------------------------------------- /spoj/LGIC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/LGIC.py -------------------------------------------------------------------------------- /spoj/acpc10a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/acpc10a.cpp -------------------------------------------------------------------------------- /spoj/addrev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/addrev.c -------------------------------------------------------------------------------- /spoj/bad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/bad.cpp -------------------------------------------------------------------------------- /spoj/cvjetici.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/cvjetici.cpp -------------------------------------------------------------------------------- /spoj/dcepc12h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/dcepc12h.cpp -------------------------------------------------------------------------------- /spoj/dcepc14i.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/dcepc14i.py -------------------------------------------------------------------------------- /spoj/dcepc902.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/dcepc902.c -------------------------------------------------------------------------------- /spoj/dcepc902.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/dcepc902.cpp -------------------------------------------------------------------------------- /spoj/divsum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/divsum.cpp -------------------------------------------------------------------------------- /spoj/favdice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/favdice.cpp -------------------------------------------------------------------------------- /spoj/gnyr09f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/gnyr09f.cpp -------------------------------------------------------------------------------- /spoj/gss1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/gss1.c -------------------------------------------------------------------------------- /spoj/gss1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/gss1.cpp -------------------------------------------------------------------------------- /spoj/haybale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/haybale.cpp -------------------------------------------------------------------------------- /spoj/horrible.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/horrible.cpp -------------------------------------------------------------------------------- /spoj/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/input.txt -------------------------------------------------------------------------------- /spoj/lastdig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/lastdig.cpp -------------------------------------------------------------------------------- /spoj/lengfact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/lengfact.c -------------------------------------------------------------------------------- /spoj/lexisort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/lexisort.cpp -------------------------------------------------------------------------------- /spoj/loopexp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/loopexp.cpp -------------------------------------------------------------------------------- /spoj/marriage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/marriage.cpp -------------------------------------------------------------------------------- /spoj/marriage_way2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/marriage_way2.cpp -------------------------------------------------------------------------------- /spoj/mkjump_dfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/mkjump_dfs.cpp -------------------------------------------------------------------------------- /spoj/mul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/mul.py -------------------------------------------------------------------------------- /spoj/nsteps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/nsteps.cpp -------------------------------------------------------------------------------- /spoj/onp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/onp.c -------------------------------------------------------------------------------- /spoj/palin_next_palindrome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/palin_next_palindrome.c -------------------------------------------------------------------------------- /spoj/pcpc12e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/pcpc12e.cpp -------------------------------------------------------------------------------- /spoj/prime1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/prime1.c -------------------------------------------------------------------------------- /spoj/problem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/problem.c -------------------------------------------------------------------------------- /spoj/rangesum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/rangesum.cpp -------------------------------------------------------------------------------- /spoj/rmqsq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/rmqsq.cpp -------------------------------------------------------------------------------- /spoj/samer08f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/samer08f.cpp -------------------------------------------------------------------------------- /spoj/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/test.cpp -------------------------------------------------------------------------------- /spoj/toandfro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/toandfro.cpp -------------------------------------------------------------------------------- /spoj/updateit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/updateit.cpp -------------------------------------------------------------------------------- /spoj/vfmul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/vfmul.py -------------------------------------------------------------------------------- /spoj/vfmul_multiplication.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spoj/words1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/spoj/words1.cpp -------------------------------------------------------------------------------- /test/ll_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/test/ll_sort.cpp -------------------------------------------------------------------------------- /test/ll_sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/test/ll_sort.go -------------------------------------------------------------------------------- /test/ll_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/test/ll_sort.py -------------------------------------------------------------------------------- /test/rev_num.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/test/rev_num.cpp -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/test/test.py -------------------------------------------------------------------------------- /topcoder/srm/144-1-300.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/competitive/HEAD/topcoder/srm/144-1-300.cpp --------------------------------------------------------------------------------