Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.util.HashSet;

import java.util.Set;

public class Main {
    public static Set<Integer> closedRange(int start, int end) {
        Set<Integer> range = new HashSet<Integer>();
        for (int i = start; i <= end; i++) {
            range.add(i);
        }
        return range;
    }
}