circle_selection.cpp: In function 'long long int solveTestCase()':
circle_selection.cpp:28:36: error: conversion from 'long long int' to non-scalar type 'circle' requested
28 | circle temp = c[j].r;
| ~~~~~^
circle_selection.cpp:29:24: warning: statement has no effect [-Wunused-value]
29 | c[j].r + c[j + 1].r;
| ~~~~~~~^~~~~~~~~~~~
circle_selection.cpp:30:30: error: cannot convert 'circle' to 'long long int' in assignment
30 | c[j + 1].r = temp;
| ^~~~
| |
| circle
circle_selection.cpp:49:1: warning: no return statement in function returning non-void [-Wreturn-type]
49 | }
| ^