Search:

Type: Posts; User: d4divya2005

Search: Search took 0.13 seconds.

  1. Re: merging two unsorted arrays and removing the duplicates..help

    yes.. i badly need a code..my assignment submission is within 6 hours...
  2. merging two unsorted arrays and removing the duplicates..help

    please help me out..i need a program where it merges two unsorted arrays and removes the duplicates..
  3. Re: my assignment..not able to complete it...please help...

    its just printing 0000000000
  4. Re: my assignment..not able to complete it...please help...

    int n=a.length+b.length;

    int c[]=new int[10];

    int p=a.length;

    for(i=0;i<a.length;i++)
    {
    c[i]=a[i];
    }
  5. Re: my assignment..not able to complete it...please help...

    m sorry... i started java just 2 days back.. m totally new...
    i tried with smaller inouts..but not wrking..i just need a program from union of two arrays...i feel my logic is wrong for the union..
  6. Re: my assignment..not able to complete it...please help...

    two files contain million integers.. m not getting the output
  7. Re: my assignment..not able to complete it...please help...

    import java.util.*;
    import java.io.*;
    class assignment{
    public static void main(String args[])
    throws Exception{
    FileReader f1 = new FileReader("c://java/2.txt");
    Scanner src= new...
  8. Re: my assignment..not able to complete it...please help...

    import java.util.*;
    import java.io.*;
    class assignment{
    public static void main(String args[])
    throws Exception{
    FileReader f1 = new FileReader("c://java/2.txt");
    Scanner src= new...
  9. my assignment..not able to complete it...please help...

    Problem statement: Write a program in java, to compute the union of two large sets.(1 million in each set)

    Details: Two sets, A and B, will be provided in the form of two text files 'A.txt' and...
Results 1 to 9 of 10