본문 바로가기

분류 전체보기300

Java floodfill2 final static int[] xArray = {1, 0, -1, 0}; final static int[] yArray = {0, 1, 0, -1}; public static class Node { int x; int y; public Node(int x, int y) { this.x = x; this.y = y; } public void setX(int x) { this.x = x; } public void setY(int y) { this.y = y; } public int getX() { return this.x; } public int getY() { return this.y; } } public static void main(String[] args) { floodFill(); } priva.. 2021. 12. 16.
Java floodfill final static int[] xArray = {1, 0, -1, 0}; final static int[] yArray = {0, 1, 0, -1}; public static class Node { int x; int y; public Node(int x, int y) { this.x = x; this.y = y; } public void setX(int x) { this.x = x; } public void setY(int y) { this.y = y; } public int getX() { return this.x; } public int getY() { return this.y; } } public static void main(String[] args) { floodFill(); } priva.. 2021. 12. 15.
Javascript Masking 개인정보에 관련하여 고객 정보를 Masking해야 한다는 이야기를 들었다. 서버 쪽에서도 처리할건 하겠지만, 일단 Javascript로 처리하는 기능을 인터넷에 검색해서 만듬. let maskingFunction = { checkNull: function (str) { return typeof str === "undefined" || str === null || str.length === 0; }, checkConfigEnable: function () { //Global return isMaskingEnable; }, email: function (str, isBackStrMasking) { if(this.checkNull(str) === true || this.checkConfigEnable() ==.. 2021. 11. 12.
백준 #1712: 손익분기점 문제 https://www.acmicpc.net/problem/1712 1712번: 손익분기점 월드전자는 노트북을 제조하고 판매하는 회사이다. 노트북 판매 대수에 상관없이 매년 임대료, 재산세, 보험료, 급여 등 A만원의 고정 비용이 들며, 한 대의 노트북을 생산하는 데에는 재료비와 www.acmicpc.net 다른 사이트에서 몇 번 해본 경험이 있지만 백준에서는 처음 풀어보는 알고리즘. 처음에는 어떤 형식으로 제출해야 하는지 몰라서 당황했는데 그냥 코드를 붙여 넣으면 된다. import java.util.*; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); final .. 2021. 11. 3.