Skip to content

Commit

Permalink
Merge pull request #6996 from sulaemanahmed/patch-6
Browse files Browse the repository at this point in the history
Update MissingNumberInArray.java
  • Loading branch information
ossamamehmood authored Nov 7, 2023
2 parents acdaa03 + 259fe58 commit e59ff29
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions Add Code Here/Java/MissingNumberInArray.java
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
import java.io.*;
//import java.util.*;

public class MissingNumberInArray {
public static void main(String[] args) throws IOException {
BufferedReader br =
new BufferedReader(new InputStreamReader(System.in));

BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int t = Integer.parseInt(br.readLine().trim());
while (t-- > 0) {
int n = Integer.parseInt(br.readLine().trim());
Expand Down

0 comments on commit e59ff29

Please sign in to comment.