전체 글 1097

[Bootstrap] 공식 홈페이지 get started

▷ Bootstrap CSS 프론트엔드 프레임워크(Toolkit) 미리 만들어진 다양한 디자인 요소들을 제공하여, 웹사이트를 빠르고 쉽게 개발할 수 있도록 한다 트위터가 처음으로 만들었다 https://getbootstrap.com/ Bootstrap Powerful, extensible, and feature-packed frontend toolkit. Build and customize with Sass, utilize prebuilt grid system and components, and bring projects to life with powerful JavaScript plugins. getbootstrap.com 한글은 버전업이 느릴 수도 있어서, 영어로 된 문서를 보는게 더 좋다. - Do..

WEB/Bootstrap 2024.03.08

[Python][leetcode 704. Binary Search] basic problem

📕 Problem https://leetcode.com/problems/binary-search/ 💡 My Solution This is very basic problem for binary search method. # leetcode # 704. Binary Search # nums = [-1,0,3,5,9,12] # target = 9 nums = [-1,0,3,5,9,12] target = 9 # sort the list first nums.sort() star = 0 end = len(nums) - 1 flag = 0 index = 0 while True: mid = (star + end)//2 if nums[mid] == target: flag = 1 index = mid break elif ..