******
If this is your product, you can request to edit it here.
Version Reviewing: 2.3
"It does simple code editing and is not an integrated development environment (IDE)."
Summary:
Typical VS style UI, supporting light and Dark theme switch. The next buttons are New, Search, Git, and Debug. But the functional layout is exactly like Atom.
It takes 5 or 6 seconds to open a file with nearly 3 million lines of code. There is no lag or crash in browsing. It does not lag in continuing coding or going to Line. It's pretty well optimized.
Version Reviewing: 2.3
"Great IDE"
Summary:
This is a very well made tool suite that has lots of versatility and robust functionality
|
What does this code do?
void guess_my_function(int arr[], int left, int middle, int right){ int low = middle - left + 1; int high = right - middle; int L[] = new int[low]; int R[] = new int[high]; int i = 0, j = 0; for (i = 0; i < low; i++) L[i] = arr[left + i]; for (j = 0; j < high; j++) R[j] = arr[middle + 1 + j]; int k = left; i = 0; j = 0; while (i < low && j < high){ if (L[i] <= R[j]){ arr[k] = L[i]; i++; } else { arr[k] = R[j]; j++; } k++; } while (i < low){ arr[k] = L[i]; i++; k++; } while (j < high){ arr[k] = R[j]; j++; k++; } }
Programming Language: Java