1. 程式人生 > >[Leetcode easy]存些水題

[Leetcode easy]存些水題

public style turn pre leet leetcode class urn arch

leetcode 34 最早出現和最後出現

class Solution {
    public int[] searchRange(int[] nums, int target) {
        int []ans={-1,-1} ;
        for(int i=0;i<nums.length;i++){
            if(nums[i]==target){
                ans[0]=i;
                break;
            }
        }
        for(int j=nums.length-1;j>=0;j--){
            
if(nums[j]==target){ ans[1]=j; break; } } return ans; } }

[Leetcode easy]存些水題