CSClubIIITDM-org / bughunt-2024

Repo for BugHunt vashisht2024
0 stars 35 forks source link

[dynamic duo] python 4 #352

Open ARAVIND-S-ECE opened 6 months ago

ARAVIND-S-ECE commented 6 months ago

b',?-H\xbdC\xbb\xd3\xcf\xde\xdf\x88\xc5\x19Z0\x8eH\xaal\x19\xcf\x8c\x11I\xc8Q/\x07\xa6\x16/BLEIQ_\xff\x0cQyl\x0e\x17\xe7\xcc\x01i\xd3\xad\xf2\xa9\xb1}MhU9\xb9J\x10\x8d5\xc8\x8a\x804\xd6_o\x8a\xeca)\xe3?\xe78\X\x86x\xe9\xc1\x97\xceV\xa1@-N\xaab\x93\x97\xd3\xff^\xef\x06W\xbah\6e\x08\x8dZ\xee\x165Yqi\xe5\xbeR\xc6b\xcfMdf-\xea\xdf'

b'gAAAAABl9TvtYQyashtT4CcHCiKPKXK10ilAFieMTLd6v-mnXJyo01M8s4N3aU32QB0iEsKa33cZ-Fuvs_MqacCH2sOY1d-wXwd3eLcsWh4ig-eJgdKhCvjLzaGuIHpg7WgLy6T1oap-T8PtgTsO1dl9n9ar6HFqxD4aqSzqOrAi51ipVnzu7KgsCNMvqAxhK1LDwRTnU8s5vMrwR0cGf3IlSFsP5z_t4IhJh4WrnQ_rC_HIM_RXib4v5tObmR6J8nlBlvngkSvGXJrfEXjhTFdgLK_XYQ4nOdAJK7KVWEtjbbMwSXhx5_CNtyapHHf3jzXRNLMc_HWpOJQqWPswAfZOYg4DCATPzkBYHgdVPTW1R8fYVWYr5THpp-3k3frAZQdh5sS2rzTCBQmIiwIzlrkW0thQVVsyHqeOSA5Va4a8iZZ6HqBCQGd4JEiGbtYZTsQdlHMs_DxCEpW6xlX7su_ILneHuK6AH2BWCkbonpVTo1ZRTuQiT69y1l7XlEEiIMlrCR3KpM_O-IfiwXEU3gPE86uoeUXQKKWzYEFTIKuxbgjPeHrNTH502ya697dmCc6RXcrqBd-vkzZX3uBc-Jn3qL8a8voHRIOsk4K9cx7NwTFN9_R3DQ0D3qHCrz5MhhGktfCEELEmiwXYEFLgpx-3Ij_y4wHEjwz6dPnGeckuCZ4dPi1jdbag4M8ujOeswM9beRuDu8shixc7iU6CSERPSqD3mm01Fw=='

bughunt-bot[bot] commented 6 months ago

Team Name: dynamic duo File Name: python 4 Line Number: [9, 11, 12] Bug Description: The 'count' array is not being initialized with a size of 'k+1', where 'k' is the maximum value in the input array 'arr'. This causes an index out of range error when updating the 'ans' array. Solution: the code to update the 'ans' array in forward order, and also initialize the 'count' array with a size of 'k+1', where 'k' is the maximum value in the input array 'arr'

bughunt-bot[bot] commented 6 months ago

Bug Hunt Evaluation: Answer: ((9, 12),) Correctness: 1.5/2 Points: 75/100