mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-04-03 10:39:42 +08:00
style: remove unused params of main (#2948)
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com>
This commit is contained in:
@@ -49,7 +49,7 @@ void print(int a[], int n) {
|
||||
std::cout << std::endl;
|
||||
}
|
||||
|
||||
int main(int argc, char const* argv[]) {
|
||||
int main() {
|
||||
int a[] = {170, 45, 75, 90, 802, 24, 2, 66};
|
||||
int n = sizeof(a) / sizeof(a[0]);
|
||||
radixsort(a, n);
|
||||
|
||||
Reference in New Issue
Block a user