fork download
  1. importPackage(java.io);
  2. importPackage(java.lang);
  3.  
  4. // your code goes here
  5.  
  6. var reader = new BufferedReader(new InputStreamReader(System['in']));
  7. var line = reader.readLine();
  8.  
  9. print(typeof line);
  10.  
  11. // Xử lý logic tìm số xuất hiện nhiều nhất
  12. // let arrLength = nhat.length;
  13. // let key = 0; // Số lần lặp lại lớn nhất
  14. // let value = null; // Số xuất hiện nhiều nhất
  15.  
  16. // for (let i = 0; i < arrLength; i++) {
  17. // let count = 0;
  18. // for (let j = 0; j < arrLength; j++) {
  19. // if (nhat[i] === nhat[j]) {
  20. // count += 1;
  21. // }
  22. // }
  23. // if (count > key) {
  24. // key = count; // Cập nhật số lần xuất hiện lớn nhất
  25. // value = nhat[i]; // Cập nhật số xuất hiện nhiều nhất
  26. // }
  27. // }
  28.  
  29. // // Xuất kết quả ra stdout
  30. // console.log("Số được lặp lại nhiều nhất là số: " + value + ", lặp lại " + key + " lần");
Success #stdin #stdout 0.51s 41580KB
stdin
1 1 2 3 4 5  6 3 2 1 1 3 
stdout
object