We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
int main() {
/* Enter your code here. Read input from STDIN. Print output to STDOUT */
int n,k;
cin>>n>>k;
for(int i=0;i>arr[i];
sort(arr,arr+n);
int ans=1e9;
for(int i=k-1;i
short c++ solution
include
include
include
include
include
using namespace std; int arr[100010];
int main() { /* Enter your code here. Read input from STDIN. Print output to STDOUT */
int n,k; cin>>n>>k; for(int i=0;i>arr[i]; sort(arr,arr+n); int ans=1e9; for(int i=k-1;i
Kotlin
fun maxMin(k: Int, arr: Array): Int { var sortedArray = arr.sorted() var result: Int? = null
}
Javascript