数组元素的删除 1
You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.
题目描述
把一个长度为 的数组 的第 个位置的元素删除掉。
输入格式
有三行
第一行有一个整数
第二行有 个整数
第三行有一个整数 ,为要删除的位置
输出格式
输出更新后的数组。
5
3 5 7 9 4
3
3 5 9 4
数据范围