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
function generateData() { | |
const symbolCard = ["C", "D", "H", "S"]; | |
const numberCard = [ | |
"2", | |
"3", | |
"4", | |
"5", | |
"6", | |
"7", | |
"8", |
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
[uid: 1 mid: 32 rating: 4.0/5 timestamp: 1217896246][uid: 21 mid: 111360 rating: 2.5/5 timestamp: 1428011135][uid: 128 mid: 100326 rating: 4.0/5 timestamp: 1420011101][uid: 475 mid: 100326 rating: 3.5/5 timestamp: 1388005962][uid: 128 mid: 101864 rating: 3.5/5 timestamp: 1420251474][uid: 475 mid: 3018 rating: 2.5/5 timestamp: 1379678927][uid: 128 mid: 100108 rating: 2.5/5 timestamp: 1445957961][uid: 21 mid: 109487 rating: 4.0/5 timestamp: 1428010919][uid: 128 mid: 107406 rating: 1.5/5 timestamp: 1419657454][uid: 1 mid: 16 rating: 3.0/5 timestamp: 1217898888][uid: 21 mid: 19 rating: 3.5/5 timestamp: 1428095348][uid: 475 mid: 3030 rating: 4.0/5 timestamp: 1305325978][uid: 1 mid: 24 rating: 1.5/5 timestamp: 1217895807][uid: 21 mid: 106489 rating: 4.0/5 timestamp: 1428011496][uid: 128 mid: 108729 rating: 3.5/5 timestamp: 1419294410][uid: 475 mid: 99992 rating: 3.0/5 timestamp: 1385062503][uid: 21 mid: 3033 rating: 4.0/5 timestamp: 1428014072][uid: 475 mid: 3033 rating: 3.5/5 timestamp: 1305331090][uid: 128 mid: 1 |
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.Scanner; | |
public class Check { | |
public static int countVowel(String x) { | |
int countvowel = 0; | |
x.toLowerCase(); | |
for(int i =0;i<x.length();i++) { | |
if(x.charAt(i) == 'a'||x.charAt(i)=='e'||x.charAt(i)=='i'||x.charAt(i)=='o'||x.charAt(i)=='u') { | |
countvowel++; | |
} | |
} |
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
public class Oldcode { | |
private static boolean prime[] = new boolean[1000000]; | |
private static int n; | |
public static void delete(int i) { | |
for (int index = i+1; index < n; ++index) { | |
if(index%i == 0) { | |
prime[index] = false; | |
} | |
} | |
} |