-
for
for i in range(list): print('* ' * (i + 1)) for member in family:
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.util.regex.Pattern; | |
import static java.util.regex.Pattern.*; | |
public final class JavaAndQuerySourceParser { | |
/* | |
* @Description(logicalName = "{클래스/함수 설명}") | |
* public class Aaa { ... } | |
* | |
* @Description(logicalName = "{클래스/함수 설명}") |
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 React, { useState, useCallback, useRef } from 'react'; | |
import { useEffect } from 'react'; | |
import Counter from '../components/Counter'; | |
import Style from './About.module.css'; | |
const useGanttCallback = (eventName, callback, deps) => { | |
const ref = useRef(); | |
useEffect(() => { | |
callback(); |
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 numpy as np | |
import cv2 | |
import matplotlib.pyplot as plt | |
import math | |
def mid(a, b): | |
return (a+b)/2 | |
def getMedianTupleOfOneColumn(tupleArray, col): #특정 열의 값으로 중앙값 찾기 (col: 0~) | |
size = len(tupleArray) |