Skip to content

Instantly share code, notes, and snippets.

View keehyun2's full-sized avatar
๐Ÿ˜ช
zzzz

Keehyun Park keehyun2

๐Ÿ˜ช
zzzz
View GitHub Profile
@keehyun2
keehyun2 / StringZip.java
Created February 7, 2020 07:20
๋ฌธ๋ฐ”์—ด ์••์ถ• - ์ˆ˜ํ–‰์‹œ๊ฐ„ ๊ฐœ์„ ... (๋‹ค๋ฅธ์ฝ”๋“œ ๋งŽ์ด ์ฐธ์กฐํ–ˆ์Šต๋‹ˆ๋‹ค)
public class StringZip {
public int solution(String s) {
//System.out.println(s);
int minLength = s.length();
for (int unit = 1; unit <= s.length() / 2; unit++) { // for #01
String composeStr = "";
int repeatCnt = 1;
String preStr = "";
String postStr = s;
@keehyun2
keehyun2 / UTMK_TO_WGS84.html
Last active November 24, 2020 06:47
https://www.data.go.kr/ ์—์„œ ์ œ๊ณตํ•˜๋Š” utm-k ๋ฅผ wgs84 ๋กœ ๋ณ€๊ฒฝํ•˜๋Š” ๋ฐฉ๋ฒ•
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Road API</title>
</head>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/proj4js/2.6.2/proj4.js" integrity="sha512-cgJnZ1VX2G0MAN4C5OGShwI3zHhfQ6RLriXuukhblNu+T082/ZRGoWLP/0xMKObvB6AUKdnm27hQKj8hKZPjXA==" crossorigin="anonymous"></script>
<script>