This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Name: get_job_details_by_name.groovy | |
// Author: Garima Damani | |
// --------------------------------------------------------------- | |
// This script gets the below job details with the given job name: | |
// *Full name | |
// *Last build number | |
// *Last build time | |
// *Last build cause | |
// *Last success build number | |
// *Last result |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.*; | |
public class Knapsack { | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
int noOfInputs = input.nextInt(); | |
for (int x = 0; x < noOfInputs; x++) { |
NewerOlder