LCR 139. 训练计划 I 23.12.02

教练使用整数数组 actions 记录一系列核心肌群训练项目编号。为增强训练趣味性,需要将所有奇数编号训练项目调整至偶数编号训练项目之前。请将调整后的训练项目编号以 数组 形式返回。

示例 1:

输入:actions = [1,2,3,4,5]
输出:[1,3,5,2,4] 
解释:为正确答案之一
 

提示:0 <= actions.length <= 50000
0 <= actions[i] <= 10000

public class Solution {
    public int[] TrainingPlan(int[] actions) {
        int len = actions.Count();
        int left=0,right=len-1;
        while(left


 

来源:力扣(LeetCode)
链接:https://leetcode.cn/problems/diao-zheng-shu-zu-shun-xu-shi-qi-shu-wei-yu-ou-shu-qian-mian-lcof
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

你可能感兴趣的:(一天二算法(LeetCode),算法,leetcode)