Horje
unique numbers in array java Code Example
unique elements in array java
int [] arr = {1,1,1,2,2,2,3,3,3,4,4,5,5,6,7,8,};

for (int j= 0; j < arr.length; j++){
int count1 = 0; // to find out how many time value is appeared in the arry
for (int i = 0; i < arr.length; i++){
     if(arr[i] == arr[j] ) {    
    // if(arr[i] == 1 ) { once boyleydi ikinci for gelince soldaki oldu
      count1++; // arraydeki harfleri tek tek saymak icin
  }
 }
    if(count1 == 1 ){
    System.out.print(arr[j]+" ");// 6 7 8 uniqe
 }
unique numbers in array java
for (int j= 0; j < arr.length; j++){
int count1 = 0; // to find out how many time value is appeared in the arry
for (int i = 0; i < arr.length; i++){
     if(arr[i] == arr[j] ) {    
    // if(arr[i] == 1 ) { once boyleydi ikinci for gelince soldaki oldu
      count1++; // arraydeki harfleri tek tek saymak icin
  }
 }
    if(count1 == 1 ){
    System.out.print(arr[j]+" ");// 6 7 8 uniqe
 }
unique numbers in array java
12,3,6,3




Java

Related
java stackoverflowerror Code Example java stackoverflowerror Code Example
Performance data in appium Code Example Performance data in appium Code Example
mint menu disapeared Code Example mint menu disapeared Code Example
javafx change application title Code Example javafx change application title Code Example
java use space in enums Code Example java use space in enums Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7