排序
Read Input Until EOF (End-of-File) and Number Your Lines Effortlessly | Competitive Programming Java
Read Input Until EOF (End-of-File) and Number Your Lines Effortlessly | Competitive Programming Java, How to Read Input Until End of File (EOF) in Java When dealing with input in J...
Hourglass Problem
Hourglass Problem,This problem is based on a challenge on hackerrank. It is a bit tricky beginner level problem. The problem is to find the maximum of all the hourglass shaped numb...
problem: Java Date and Time
problem: Java Date and Time, Link to the problem Input would be month day year, and output the day of week. //sample input 08 05 2015 //sample output WEDNESDAY Enter fullscreen mod...
HackerRank #40 | Java Dequeue |
HackerRank #40 | Java Dequeue | ,Esse exercício recebe dois inputs iniciais: um integer N, relativo à quantidade de números em um array, e um integer M, relativo a um subarray d...
HackerRank #8 | Date and Time |
HackerRank #8 | Date and Time | , Date And Time Esse exercício propõe usar a classe Calendar para construir uma saída com apenas o dia da semana a partir de um input de mês, di...
HackerRank #7 | Int to String / String to Int |
HackerRank #7 | Int to String / String to Int | , Int to String Para transformar um int em um string existem três formas: String s = String.valueOf(n); String s = Integer.toString...