Circular sum question

in this question what circular sum means?? and what should be the approach

Approach :
there are two case : max sum sub array or total sum - min sum subarray.

first case can be calculated by Kadane.
for second ques, if you multiply the array by -1 and then do kadane it will give min subarray.