This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /**/ | |
| @Getter | |
| @NoArgsConstructor | |
| @Entity | |
| public class Branch extends BaseTimeEntity { | |
| @Id @GeneratedValue | |
| private Long id; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ... | |
| @Entity | |
| public class Account { | |
| // ... | |
| @OneToMany(mappedBy = "account") | |
| private List<AccountTag> accountTags = new ArrayList<>(); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.io.*; | |
| import java.util.*; | |
| import static java.util.Arrays.*; | |
| import static java.util.stream.IntStream.*; | |
| public class Main { | |
| public static void main(String[] args) throws Exception { | |
| BufferedReader br = new BufferedReader(new FileReader("input.txt")); | |
| StringTokenizer st; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Solution{ | |
| int N, ans = 0, maxBlock; | |
| public Solution(int N, int[][] board){ | |
| this.N = N; | |
| System.out.println(dfs(1, board)); | |
| } | |
| public int[][] rotate90(int[][] board){ | |
| int[][] next = new int[N+1][N+1]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.example.demo2.api.dto; | |
| import com.example.demo2.domain.Department; | |
| import com.example.demo2.domain.User.*; | |
| import lombok.AccessLevel; | |
| import lombok.*; | |
| @Getter | |
| @NoArgsConstructor(access = AccessLevel.PROTECTED) | |
| public class CreateStudentRequest { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import com.cupjoo.board.domain.BaseTimeEntity; | |
| import lombok.Builder; | |
| import lombok.Getter; | |
| import lombok.NoArgsConstructor; | |
| import javax.persistence.*; | |
| @Getter | |
| @NoArgsConstructor | |
| @Entity |