index
int64
0
0
repo_id
stringlengths
26
205
file_path
stringlengths
51
246
content
stringlengths
8
433k
__index_level_0__
int64
0
10k
0
Create_ds/chancery/src/main/java/com/airbnb
Create_ds/chancery/src/main/java/com/airbnb/chancery/GithubFailure.java
package com.airbnb.chancery; public class GithubFailure extends Exception { public GithubFailure(Throwable cause) { super(cause); } public static final class forDownload extends GithubFailure { public forDownload(Throwable cause) { super(cause); } } public static final class forRateLimit extends Github...
3,400
0
Create_ds/chancery/src/main/java/com/airbnb
Create_ds/chancery/src/main/java/com/airbnb/chancery/ChanceryConfig.java
package com.airbnb.chancery; import com.fasterxml.jackson.annotation.JsonProperty; import com.yammer.dropwizard.client.JerseyClientConfiguration; import com.yammer.dropwizard.config.Configuration; import com.yammer.dropwizard.validation.ValidationMethod; import lombok.Data; import lombok.EqualsAndHashCode; import org...
3,401
0
Create_ds/chancery/src/main/java/com/airbnb
Create_ds/chancery/src/main/java/com/airbnb/chancery/PayloadExpressionEvaluator.java
package com.airbnb.chancery; import com.airbnb.chancery.model.CallbackPayload; import org.joda.time.format.DateTimeFormat; import org.joda.time.format.ISODateTimeFormat; import org.mvel2.ParserContext; import org.mvel2.templates.CompiledTemplate; import org.mvel2.templates.TemplateCompiler; import org.mvel2.templates....
3,402
0
Create_ds/chancery/src/main/java/com/airbnb
Create_ds/chancery/src/main/java/com/airbnb/chancery/CallbackResource.java
package com.airbnb.chancery; import com.airbnb.chancery.github.GithubAuthChecker; import com.airbnb.chancery.model.CallbackPayload; import com.fasterxml.jackson.databind.ObjectMapper; import com.google.common.eventbus.EventBus; import com.yammer.metrics.annotation.ExceptionMetered; import com.yammer.metrics.annotation...
3,403
0
Create_ds/chancery/src/main/java/com/airbnb
Create_ds/chancery/src/main/java/com/airbnb/chancery/RefLogger.java
package com.airbnb.chancery; import com.airbnb.chancery.github.GithubClient; import com.airbnb.chancery.model.CallbackPayload; import com.airbnb.chancery.model.Repository; import lombok.extern.slf4j.Slf4j; import org.slf4j.Logger; import javax.validation.constraints.NotNull; @Slf4j public class RefLogger extends Fil...
3,404
0
Create_ds/chancery/src/main/java/com/airbnb
Create_ds/chancery/src/main/java/com/airbnb/chancery/S3ArchiverConfig.java
package com.airbnb.chancery; import com.fasterxml.jackson.annotation.JsonProperty; import com.yammer.dropwizard.config.Configuration; import lombok.Data; import lombok.EqualsAndHashCode; import org.hibernate.validator.constraints.NotEmpty; @Data @EqualsAndHashCode(callSuper=true) public class S3ArchiverConfig extend...
3,405
0
Create_ds/chancery/src/main/java/com/airbnb
Create_ds/chancery/src/main/java/com/airbnb/chancery/GithubClientHealthCheck.java
package com.airbnb.chancery; import com.airbnb.chancery.github.GithubClient; import com.airbnb.chancery.model.RateLimitStats; import com.yammer.metrics.core.HealthCheck; public class GithubClientHealthCheck extends HealthCheck { private final GithubClient client; protected GithubClientHealthCheck(final Githu...
3,406
0
Create_ds/chancery/src/main/java/com/airbnb
Create_ds/chancery/src/main/java/com/airbnb/chancery/FilteringSubscriber.java
package com.airbnb.chancery; import com.airbnb.chancery.model.CallbackPayload; import com.google.common.eventbus.AllowConcurrentEvents; import com.google.common.eventbus.Subscribe; import com.yammer.metrics.Metrics; import com.yammer.metrics.core.Meter; import com.yammer.metrics.core.Timer; import com.yammer.metrics.c...
3,407
0
Create_ds/chancery/src/main/java/com/airbnb
Create_ds/chancery/src/main/java/com/airbnb/chancery/RefFilter.java
package com.airbnb.chancery; import com.airbnb.chancery.model.CallbackPayload; import lombok.NonNull; import lombok.extern.slf4j.Slf4j; import java.util.regex.Pattern; @Slf4j public class RefFilter { @NonNull private final Pattern pattern; RefFilter(String repoRefPattern) { pattern = Pattern.compile(repoRefPat...
3,408
0
Create_ds/chancery/src/main/java/com/airbnb
Create_ds/chancery/src/main/java/com/airbnb/chancery/RefLoggerConfig.java
package com.airbnb.chancery; import com.fasterxml.jackson.annotation.JsonProperty; import com.yammer.dropwizard.config.Configuration; import lombok.Data; import lombok.EqualsAndHashCode; import org.hibernate.validator.constraints.NotEmpty; @Data @EqualsAndHashCode(callSuper=true) public class RefLoggerConfig extends...
3,409
0
Create_ds/chancery/src/main/java/com/airbnb
Create_ds/chancery/src/main/java/com/airbnb/chancery/ChanceryService.java
package com.airbnb.chancery; import com.airbnb.chancery.github.GithubAuthChecker; import com.airbnb.chancery.github.GithubClient; import com.amazonaws.auth.BasicAWSCredentials; import com.amazonaws.services.s3.AmazonS3Client; import com.google.common.eventbus.AsyncEventBus; import com.google.common.eventbus.EventBus; ...
3,410
0
Create_ds/chancery/src/main/java/com/airbnb
Create_ds/chancery/src/main/java/com/airbnb/chancery/S3Archiver.java
package com.airbnb.chancery; import com.airbnb.chancery.github.GithubClient; import com.airbnb.chancery.model.CallbackPayload; import com.amazonaws.services.s3.AmazonS3Client; import com.amazonaws.services.s3.model.ObjectMetadata; import com.amazonaws.services.s3.model.PutObjectRequest; import com.yammer.metrics.Metri...
3,411
0
Create_ds/chancery/src/main/java/com/airbnb
Create_ds/chancery/src/main/java/com/airbnb/chancery/S3ClientHealthCheck.java
package com.airbnb.chancery; import com.amazonaws.services.s3.AmazonS3Client; import com.yammer.metrics.core.HealthCheck; public class S3ClientHealthCheck extends HealthCheck { private final AmazonS3Client client; private final String bucket; protected S3ClientHealthCheck(AmazonS3Client client, String bu...
3,412
0
Create_ds/chancery/src/main/java/com/airbnb/chancery
Create_ds/chancery/src/main/java/com/airbnb/chancery/github/GithubClient.java
package com.airbnb.chancery.github; import com.airbnb.chancery.GithubFailure; import com.airbnb.chancery.model.RateLimitStats; import com.airbnb.chancery.model.ReferenceCreationRequest; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.ObjectMapper; import com.sun.jersey....
3,413
0
Create_ds/chancery/src/main/java/com/airbnb/chancery
Create_ds/chancery/src/main/java/com/airbnb/chancery/github/UserAgentFilter.java
package com.airbnb.chancery.github; import com.sun.jersey.api.client.ClientHandlerException; import com.sun.jersey.api.client.ClientRequest; import com.sun.jersey.api.client.ClientResponse; import com.sun.jersey.api.client.filter.ClientFilter; final class UserAgentFilter extends ClientFilter { @Override public Clie...
3,414
0
Create_ds/chancery/src/main/java/com/airbnb/chancery
Create_ds/chancery/src/main/java/com/airbnb/chancery/github/AuthorizationFilter.java
package com.airbnb.chancery.github; import lombok.RequiredArgsConstructor; import com.sun.jersey.api.client.ClientHandlerException; import com.sun.jersey.api.client.ClientRequest; import com.sun.jersey.api.client.ClientResponse; import com.sun.jersey.api.client.filter.ClientFilter; @RequiredArgsConstructor final cla...
3,415
0
Create_ds/chancery/src/main/java/com/airbnb/chancery
Create_ds/chancery/src/main/java/com/airbnb/chancery/github/GithubAuthChecker.java
package com.airbnb.chancery.github; import lombok.extern.slf4j.Slf4j; import org.apache.commons.codec.binary.Hex; import javax.annotation.Nullable; import javax.crypto.Mac; import javax.crypto.spec.SecretKeySpec; import javax.validation.constraints.NotNull; import java.security.InvalidKeyException; import java.securi...
3,416
0
Create_ds/chancery/src/main/java/com/airbnb/chancery
Create_ds/chancery/src/main/java/com/airbnb/chancery/model/RateLimitStats.java
package com.airbnb.chancery.model; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; @Data public class RateLimitStats { @JsonProperty int limit; @JsonProperty int remaining; @Data public static class Container { @JsonProperty RateLimitStats rate; } }
3,417
0
Create_ds/chancery/src/main/java/com/airbnb/chancery
Create_ds/chancery/src/main/java/com/airbnb/chancery/model/Commit.java
package com.airbnb.chancery.model; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import javax.validation.constraints.NotNull; import java.util.List; @Data @JsonIgnoreProperties(ignoreUnknown = true) public class Commit { @Json...
3,418
0
Create_ds/chancery/src/main/java/com/airbnb/chancery
Create_ds/chancery/src/main/java/com/airbnb/chancery/model/Repository.java
package com.airbnb.chancery.model; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; @Data @JsonIgnoreProperties(ignoreUnknown = true) public class Repository { @JsonProperty private int id; @JsonProperty private int watchers; ...
3,419
0
Create_ds/chancery/src/main/java/com/airbnb/chancery
Create_ds/chancery/src/main/java/com/airbnb/chancery/model/CallbackPayload.java
package com.airbnb.chancery.model; import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import org.joda.time.DateTime; import javax.validation.constraints.NotNull; import java.util.Li...
3,420
0
Create_ds/chancery/src/main/java/com/airbnb/chancery
Create_ds/chancery/src/main/java/com/airbnb/chancery/model/Entity.java
package com.airbnb.chancery.model; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; @Data @JsonIgnoreProperties(ignoreUnknown = true) public class Entity { @JsonProperty private String name; @JsonProperty private String usernam...
3,421
0
Create_ds/chancery/src/main/java/com/airbnb/chancery
Create_ds/chancery/src/main/java/com/airbnb/chancery/model/ReferenceCreationRequest.java
package com.airbnb.chancery.model; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.AllArgsConstructor; import lombok.Data; @Data @AllArgsConstructor @JsonIgnoreProperties(ignoreUnknown = true) public class ReferenceCreationRequest { ...
3,422
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/LCS_FORMED_CONSECUTIVE_SEGMENTS_LEAST_LENGTH_K.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class LCS_FORMED_CONS...
3,423
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/COUNT_CHARACTERS_STRING_DISTANCE_ENGLISH_ALPHABETS.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class COUNT_CHARACTER...
3,424
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/RECURSIVE_PROGRAM_PRIME_NUMBER.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class RECURSIVE_PROGR...
3,425
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/COUNT_DISTINCT_OCCURRENCES_AS_A_SUBSEQUENCE.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class COUNT_DISTINCT_...
3,426
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/CHECK_WHETHER_TWO_STRINGS_ARE_ANAGRAM_OF_EACH_OTHER.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class CHECK_WHETHER_T...
3,427
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/COUNT_NUMBERS_CAN_CONSTRUCTED_USING_TWO_NUMBERS.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class COUNT_NUMBERS_C...
3,428
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/SUM_PAIRWISE_PRODUCTS.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class SUM_PAIRWISE_PR...
3,429
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/COUNT_SET_BITS_IN_AN_INTEGER.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class COUNT_SET_BITS_...
3,430
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/LONGEST_PALINDROME_SUBSEQUENCE_SPACE.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class LONGEST_PALINDR...
3,431
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/LONGEST_EVEN_LENGTH_SUBSTRING_SUM_FIRST_SECOND_HALF.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class LONGEST_EVEN_LE...
3,432
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/DYCK_PATH.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class DYCK_PATH{ publ...
3,433
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/PRINT_A_CLOSEST_STRING_THAT_DOES_NOT_CONTAIN_ADJACENT_DUPLICATES.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class PRINT_A_CLOSEST...
3,434
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/OVERLAPPING_SUM_TWO_ARRAY.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class OVERLAPPING_SUM...
3,435
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/MOBILE_NUMERIC_KEYPAD_PROBLEM.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class MOBILE_NUMERIC_...
3,436
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/CHECK_VALID_SEQUENCE_DIVISIBLE_M_1.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class CHECK_VALID_SEQ...
3,437
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/DIFFERENCE_BETWEEN_HIGHEST_AND_LEAST_FREQUENCIES_IN_AN_ARRAY_1.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class DIFFERENCE_BETW...
3,438
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/WAYS_TRANSFORMING_ONE_STRING_REMOVING_0_CHARACTERS.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class WAYS_TRANSFORMI...
3,439
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/MARKOV_MATRIX.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class MARKOV_MATRIX{ ...
3,440
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/CHOCOLATE_DISTRIBUTION_PROBLEM.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class CHOCOLATE_DISTR...
3,441
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/FIND_DIFFERENCE_BETWEEN_SUMS_OF_TWO_DIAGONALS_1.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class FIND_DIFFERENCE...
3,442
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/ROW_WISE_COMMON_ELEMENTS_TWO_DIAGONALS_SQUARE_MATRIX.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class ROW_WISE_COMMON...
3,443
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/FIND_SUBARRAY_WITH_GIVEN_SUM_1.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class FIND_SUBARRAY_W...
3,444
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/HYPERCUBE_GRAPH.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class HYPERCUBE_GRAPH...
3,445
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/HEXAGONAL_NUMBER.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class HEXAGONAL_NUMBE...
3,446
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/LEXICOGRAPHICALLY_NEXT_STRING.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class LEXICOGRAPHICAL...
3,447
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/CHECK_LARGE_NUMBER_DIVISIBLE_9_NOT.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class CHECK_LARGE_NUM...
3,448
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/FIND_THE_LARGEST_SUBARRAY_WITH_0_SUM.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class FIND_THE_LARGES...
3,449
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/SUM_BINOMIAL_COEFFICIENTS_1.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class SUM_BINOMIAL_CO...
3,450
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/NUMBER_SUBSEQUENCES_STRING_DIVISIBLE_N.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class NUMBER_SUBSEQUE...
3,451
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/ADD_TWO_NUMBERS_WITHOUT_USING_ARITHMETIC_OPERATORS.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class ADD_TWO_NUMBERS...
3,452
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/COUNT_OPERATIONS_MAKE_STRINGAB_FREE.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class COUNT_OPERATION...
3,453
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/SCHEDULE_JOBS_SERVER_GETS_EQUAL_LOAD.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class SCHEDULE_JOBS_S...
3,454
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/HOW_TO_CHECK_IF_A_GIVEN_ARRAY_REPRESENTS_A_BINARY_HEAP_1.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class HOW_TO_CHECK_IF...
3,455
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/NUMBER_DIGITS_REMOVED_MAKE_NUMBER_DIVISIBLE_3.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class NUMBER_DIGITS_R...
3,456
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/MAXIMIZE_SUM_ARRII.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class MAXIMIZE_SUM_AR...
3,457
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/CHECK_WHETHER_GIVEN_DEGREES_VERTICES_REPRESENT_GRAPH_TREE.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class CHECK_WHETHER_G...
3,458
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/MAXIMUM_POINTS_INTERSECTION_N_CIRCLES.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class MAXIMUM_POINTS_...
3,459
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/SUBSEQUENCES_SIZE_THREE_ARRAY_WHOSE_SUM_DIVISIBLE_M.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class SUBSEQUENCES_SI...
3,460
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/COUNT_NUMBER_OF_WAYS_TO_PARTITION_A_SET_INTO_K_SUBSETS_1.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class COUNT_NUMBER_OF...
3,461
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/LEONARDO_NUMBER_1.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class LEONARDO_NUMBER...
3,462
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/FIND_MAXIMUM_HEIGHT_PYRAMID_FROM_THE_GIVEN_ARRAY_OF_OBJECTS.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class FIND_MAXIMUM_HE...
3,463
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/MAXIMUM_NUMBER_CHOCOLATES_DISTRIBUTED_EQUALLY_AMONG_K_STUDENTS.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class MAXIMUM_NUMBER_...
3,464
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/ELEMENTS_TO_BE_ADDED_SO_THAT_ALL_ELEMENTS_OF_A_RANGE_ARE_PRESENT_IN_ARRAY.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class ELEMENTS_TO_BE_...
3,465
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/FIND_THE_MAXIMUM_ELEMENT_IN_AN_ARRAY_WHICH_IS_FIRST_INCREASING_AND_THEN_DECREASING.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class FIND_THE_MAXIMU...
3,466
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/MAXIMUM_LENGTH_SUBSEQUENCE_DIFFERENCE_ADJACENT_ELEMENTS_EITHER_0_1.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class MAXIMUM_LENGTH_...
3,467
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/CASSINIS_IDENTITY.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class CASSINIS_IDENTI...
3,468
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/PROGRAM_CALCULATE_VOLUME_ELLIPSOID.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class PROGRAM_CALCULA...
3,469
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/MAXIMUM_XOR_VALUE_MATRIX.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class MAXIMUM_XOR_VAL...
3,470
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/CHECK_ARRAY_REPRESENTS_INORDER_BINARY_SEARCH_TREE_NOT.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class CHECK_ARRAY_REP...
3,471
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/COUNT_SUBARRAYS_EQUAL_NUMBER_1S_0S_1.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class COUNT_SUBARRAYS...
3,472
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/FIND_SUM_NODES_GIVEN_PERFECT_BINARY_TREE_1.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class FIND_SUM_NODES_...
3,473
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/PROGRAM_CIRCUMFERENCE_PARALLELOGRAM.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class PROGRAM_CIRCUMF...
3,474
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/CHECK_NUMBER_IS_PERFECT_SQUARE_USING_ADDITIONSUBTRACTION.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class CHECK_NUMBER_IS...
3,475
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/SUM_FACTORS_NUMBER.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class SUM_FACTORS_NUM...
3,476
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/CHECK_GIVEN_STRING_ROTATION_PALINDROME.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class CHECK_GIVEN_STR...
3,477
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/TOTAL_NUMBER_OF_NON_DECREASING_NUMBERS_WITH_N_DIGITS_1.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class TOTAL_NUMBER_OF...
3,478
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/LEXICOGRAPHICALLY_MINIMUM_STRING_ROTATION.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class LEXICOGRAPHICAL...
3,479
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/CHECK_NUMBER_POWER_K_USING_BASE_CHANGING_METHOD.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class CHECK_NUMBER_PO...
3,480
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/MINIMUM_NUMBER_OF_JUMPS_TO_REACH_END_OF_A_GIVEN_ARRAY_1.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class MINIMUM_NUMBER_...
3,481
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/SORT_EVEN_NUMBERS_ASCENDING_ORDER_SORT_ODD_NUMBERS_DESCENDING_ORDER_1.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; class SORT_EVEN_NUMBERS_ASCE...
3,482
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/SEARCH_AN_ELEMENT_IN_AN_ARRAY_WHERE_DIFFERENCE_BETWEEN_ADJACENT_ELEMENTS_IS_1.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class SEARCH_AN_ELEME...
3,483
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/SUM_SEQUENCE_2_22_222.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class SUM_SEQUENCE_2_...
3,484
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/MAXIMUM_PRODUCT_SUBARRAY_ADDED_NEGATIVE_PRODUCT_CASE.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class MAXIMUM_PRODUCT...
3,485
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/CHECK_IF_X_CAN_GIVE_CHANGE_TO_EVERY_PERSON_IN_THE_QUEUE.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class CHECK_IF_X_CAN_...
3,486
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/MINIMUM_LENGTH_SUBARRAY_SUM_GREATER_GIVEN_VALUE.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class MINIMUM_LENGTH_...
3,487
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/NEXT_HIGHER_NUMBER_WITH_SAME_NUMBER_OF_SET_BITS.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class NEXT_HIGHER_NUM...
3,488
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/SEARCH_INSERT_AND_DELETE_IN_A_SORTED_ARRAY_1.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class SEARCH_INSERT_A...
3,489
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/CONVERT_STRICTLY_INCREASING_ARRAY_MINIMUM_CHANGES.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class CONVERT_STRICTL...
3,490
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/C_PROGRAM_FACTORIAL_NUMBER_1.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class C_PROGRAM_FACTO...
3,491
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/EQUILIBRIUM_INDEX_OF_AN_ARRAY_1.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class EQUILIBRIUM_IND...
3,492
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/HOW_CAN_WE_SUM_THE_DIGITS_OF_A_GIVEN_NUMBER_IN_SINGLE_STATEMENT.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class HOW_CAN_WE_SUM_...
3,493
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/MAXIMUM_DIFFERENCE_SUM_ELEMENTS_TWO_ROWS_MATRIX.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class MAXIMUM_DIFFERE...
3,494
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/ADD_1_TO_A_GIVEN_NUMBER_1.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class ADD_1_TO_A_GIVE...
3,495
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/FIND_THE_NUMBER_OCCURRING_ODD_NUMBER_OF_TIMES.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class FIND_THE_NUMBER...
3,496
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/FIND_HARMONIC_MEAN_USING_ARITHMETIC_MEAN_GEOMETRIC_MEAN.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class FIND_HARMONIC_M...
3,497
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/COUNT_ARRAYS_CONSECUTIVE_ELEMENT_DIFFERENT_VALUES.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class COUNT_ARRAYS_CO...
3,498
0
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts
Create_ds/TransCoder/data/evaluation/geeks_for_geeks_successful_test_scripts/java/SUM_TWO_LARGE_NUMBERS.java
// Copyright (c) 2019-present, Facebook, Inc. // All rights reserved. // // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. // import java.util. *; import java.util.stream.*; import java.lang.*; import javafx.util.Pair; public class SUM_TWO_LARGE_N...
3,499