본문 바로가기

카테고리 없음

2020-12-28 12시 개발자 글 모음 | "React 코드 이해" 외 6개 이야기

글귀) 과거를 바꾸는 방법 by 김이삭

  • 우리가 선택하지 않은 것으로 인해 힘든 어제를 보내고
  • 우리가 시간을 들여 가꾼 것으로만 오늘 떳떳해진다
  • 오늘을 열심히 사는 것으로 어제를 바꿀 수 있다


[LeetCode] Top K Frequent Elements by 김도하


    잡다구리 일상(일단 개발부터 해놓자) by 김지운


      [Algorithms] BFS, DFS 알고리즘 by 이동원 about Algorithm

      • printf(src + " "); for (int i = 1; i <= V; i++) { if (visit[i] == 0 && map[src][i] == 1) { dfs(i); } } } 1 2 3 4 5 6 7 8 9 10 public static void dfs ( int src ) { visit [ src ] = 1 ; System
      • printf(x + " "); for (int i = 1; i <= V; i++) { if (visit[i] == 0 && map[x][i] == 1) { q
      • offer(i); visit[i] = 1; } } } } 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 public static void bfs ( int src ) { q


      인공지능 연구지수( AI Research Index ): 세계 최고의 인공지능 대학은? by 김봉조

      • 인공지능 연구 수를 기준으로 세계 상위 500개 대학을 1차 선정하였으며
      • 그리고 가중치를 고려하여 500개 대학의 인공지능 연구지수를 측정하였다
      • 인공지능 연구 수를 기준으로 세계 상위 500개 대학을 1차 선정하고


      로빈후드 투자자분석을 통해 동학개미를 보면? by 김형준

      • by limited attention than other investors for several reasons”: — Half of Robinhood users are first-time investors who are unlikely to have developed their own clear criteria for buying a stock
      • The following is a summary of their findings: — Robinhood users are more subject to attention biases and more likely to chase stocks with extreme performance and volume than other retail investors — for Robinhood users about 35 (25) percent of all net buying (selling) was in the top 10 stocks versus 24 (14) percent for other retail investors
      • — Robinhood users are more aggressive buyers of stocks on Robinhood’s Top Mover list than other retail investors — Robinhood investors buy both extreme gainers and losers


      React 코드 이해 by 이종찬 about React.js

      • import React from 'react'; function App() { return (

        리액트 안녕!

        잘 작동하니?

        ); } export default App;
      • import React from 'react'; function App() { const name = '리액트'; return ( <>

        {name} 안녕!

        잘 작동하니?

        ); } export default App;
      • import React from 'react'; function App() { const name = '리액트'; return (