Skip to content

Instantly share code, notes, and snippets.

View JoeUnsung's full-sized avatar
🏠
Working from home

Joe JoeUnsung

🏠
Working from home
  • SSG.COM
  • Seoul
View GitHub Profile
@JoeUnsung
JoeUnsung / randomGame
Created November 26, 2016 15:57
Try to get answer number between 1 and 100.
package joe;
import java.util.*;
public class HW3_20101062_1 {
public static void main(String[] args){
// 1~100 사이의 임의의 값을 얻어서 answer 에 저장한다.
int cnt = 0, input = 0;
@JoeUnsung
JoeUnsung / checkPassword
Created November 26, 2016 12:31
Check password validation, if it has recurring character more than twice.
package joe;
import java.util.*;
import java.lang.*;
import java.io.*;
class Check{