首页 > 其他分享 >leetcode 每日一题 1470. 重新排列数组

leetcode 每日一题 1470. 重新排列数组

时间:2022-08-29 17:00:19浏览次数:86  
标签:arr nums int 1470 重新排列 leetcode

leetcode  每日一题 1470. 重新排列数组

class Solution {
    public int[] shuffle(int[] nums, int n) {
        int[] arr = new int[nums.length];
        for (int i = 0; i < nums.length; i++) {
            if(i < n){
                arr[i*2] = nums[i];
            }else{
                arr[(i-n)*2 +1] = nums[i];
            }
        }
        return arr;
    }
}

 

 

 

标签:arr,nums,int,1470,重新排列,leetcode
From: https://www.cnblogs.com/yexuba/p/16636515.html

相关文章

  • 【leetcode】81. 搜索旋转排序数组 II
    原题地址:https://leetcode.cn/problems/search-in-rotated-sorted-array-ii/用循环遍历数组肯定能轻松找到target但要尽可能减少操作步骤,一般跟顺序有关的都是用二分,关键......
  • [LeetCode] 1470. Shuffle the Array
    Giventhearray nums consistingof 2n elementsintheform [x1,x2,...,xn,y1,y2,...,yn].Returnthearrayintheform [x1,y1,x2,y2,...,xn,yn].Example1:......
  • leetcode 227. Basic Calculator II 基本计算器 II(中等)
    一、题目大意给你一个字符串表达式s,请你实现一个基本计算器来计算并返回它的值。整数除法仅保留整数部分。你可以假设给定的表达式总是有效的。所有中间结果将在[-23......
  • leetcode458 可怜的小猪
    思路:数学。实现:classSolution{public:intpoorPigs(intbuckets,intminutesToDie,intminutesToTest){intbase=minutesToTest/minutesToDie+1......
  • leetcode440 字典序的第K小数字
    思路:字典树思想。实现:1classSolution{2public:3//前缀prefix下的节点数量4usingll=longlong;5llget_count(llprefix,lln){6......
  • LeetCode 21. 合并两个有序链表
    题目题目链接:https://leetcode.cn/problems/merge-two-sorted-lists/将两个升序链表合并为一个新的升序链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的......
  • leetcode-1
    importjava.util.HashMap;/***<p>给定一个整数数组<code>nums</code>&nbsp;和一个整数目标值<code>target</code>,请你在该数组中找出<strong>和为目标值</strong......
  • leetcode-1470. 重新排列数组
    1470.重新排列数组图床:blogimg/刷题记录/leetcode/1470/刷题代码汇总:https://www.cnblogs.com/geaming/p/16428234.html题目思路开辟新的空间,装入元素。解法class......
  • LeetCode 1779. Find Nearest Point That Has the Same X or Y Coordinate
    原题链接在这里:https://leetcode.com/problems/find-nearest-point-that-has-the-same-x-or-y-coordinate/题目:Youaregiventwointegers, x and y,whichrepresen......
  • LeetCode — 最小路径和
    LeetCode—最小路径和问题陈述给定一个mxn网格用非负数填充,找到一条从左上角到右下角的路径,该路径最小化沿其路径的所有数字的总和。笔记:您只能在任何时间点向下或......