본문 바로가기 메뉴 바로가기

Studying programming

프로필사진
  • 글쓰기
  • 관리
  • 태그
  • 방명록
  • RSS

Studying programming

검색하기 폼
  • Jimin's Programming (194)
    • Algorithms (54)
    • JavaScript (16)
    • Vue.js (3)
    • Node.js (3)
    • React.js (7)
    • React Native (0)
    • Spring Boot (13)
    • JAVA (58)
    • C++ (17)
    • Programming (19)
    • Computer basics (4)
  • 방명록

전체 글 (194)
How to manage state with useState hook

1. simple way using destructuring const AdminProductDetail = () => { const params = useParams(); const navigate = useNavigate(); const [product, setProduct] = useState({ name: '', price: 0, image: '', brand: '', category: '', countInStock: 0, description: '', }); const getData = async (id) => { try { const { data } = await axios.get(`/api/products/${id}`); const { name, price, image, brand, cate..

React.js 2022. 3. 3. 10:18
find intersection algorithm

중복된 값 string return. function FindIntersection(strArr){ let first = strArr[0].split(','); // turn them into array let second = strArr[1].split(','); //중복되는 value 찾기. let filtered = first.filter(function (value){ return second.includes(value) //case-sensitive. return true if it contains the value. }) //중복없으면 return false. if(filtered.length === 0){ return false; }else{ //array to string using joi..

Algorithms 2021. 3. 28. 23:41
two sum

function twoSum(numArr, target) { //Create new Map const numMap = new Map(); //Loop with index for (const [index, element] of numArr.entries()) { //array iterator that returns key/value for each index. //need to calculate the difference so we can compare with array elements const diff = target - element //If our numMap can find the current element which matches the diff, return the array if (num..

Algorithms 2021. 3. 26. 23:34
git remote 변경

check git remote git remote -v change git remote git remote set-url origin 'your address'

Programming 2021. 3. 6. 14:13
create git branch

git status //check the git status git pull origin 'branch이름' git checkout -b "branch name" // with '-b', you can create a new branch and checkout at the same time git add . git commit -m "message" git push origin 'branch이름' git checkout master git pull

Programming 2021. 2. 27. 15:13
on sale products algorithm

문제. original price에서 1개 이상을 살때마다 그 다음 product는 sale에 해당되는 할인가를 계속 적용한다. 그 할인된 가격이 limit과 같아지면 할인을 멈추고 총 budget 만큼 합계가 되면 총 몇개의 게임을 샀는지 total game count 를 return 한다. let original = 20; let sale = 3; let limit = 6; let budget = 80; function Sales(o,s,l,b){ let total = o; //여기서 시작이라서. let count = 0; while(total

Algorithms 2021. 2. 12. 16:34
이전 1 2 3 4 5 6 ··· 33 다음
이전 다음
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
TAG
  • javascript
  • rest parameter
  • java
  • Javascript Algorithm
  • hackerrank javascript solution
  • Collection Framework
  • easy algorithm
  • ... in Javascript
  • repeat()
  • string class in java
  • 프로그래머스 알고리즘문제
  • spring boot application
  • easy javascript algorithm
  • compareTo()
  • 프로그래머스 알고리즘
  • hackerrank javascript
  • equals()
  • 알고리즘
  • hackerrank solution
  • math.abs
  • substring()
  • hackerrank
  • HackerRank Algorithm
  • HashMap
  • code refactoring
  • math.max
  • 프로그래머스
  • C++
  • algorithm
  • Object type casting
more
«   2025/07   »
일 월 화 수 목 금 토
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31
글 보관함

Blog is powered by Tistory / Designed by Tistory

티스토리툴바