사랑하애오
close
프로필 배경
프로필 로고

사랑하애오

  • 분류 전체보기
    • 정보처리기사 기출문제
      • 2020년
    • AWS
    • HTML, CSS, Layout, Grid
    • JavaScript, JQuery
    • C++
    • Node.js
    • Linux
      • centosOS
    • BlockChain
      • 기술면접
      • 비트코인
      • 이더리움
    • VSCode
    • Network
    • Solidity
    • JAVA
      • SpringBoot
      • SpringBoot Shoppingmall
      • SpringBoot CRUD Board
      • Eclipse
    • MySQL
    • React.JS
      • Redux-Saga
    • 프로그래머스(Javascript)
      • Level 0
  • 홈
  • 태그
  • 방명록

이더리움 솔리디티 기초 샘플

아래는 My First Contract라는 Solidity Smart Contract Example입니다. 컨트랙트는 두 가지 변수(이름과 나이)를 Set하고 Get하고 있습니다. Setter와 Getter의 기본을 배우기 위해 아래 컨트랙트를 테스트 해보십시오. // SPDX-License-Identifier: MIT pragma solidity >=0.8.6

  • format_list_bulleted BlockChain/이더리움
  • · 2023. 9. 4.
  • textsms

이더리움 도움말 및 정보

이더리움 정보를 얻을 수 있는 가장 좋은 사이트 https://ethereum.org/en/ 인기 있는 포럼 r/ethereum – 이더리움에 대한 Reddit의 일반 포럼 r/ethfinance – 이더리움에 대한 Reddit의 금융 및 DeFi 정보 r/ethdev – Reddit의 이더리움 개발 포럼 이더리움 스택익스체인지 – 이더리움 개발자를 위한 토론 및 도움말 이더리움 리서치 – 암호경제학 연구를 위한 게시판 대화방 Ethereum Gitter – Ethereum github 리포지토리 대화방 Ethereum Hackers – 전 세계 이더리움 해커를 위한 Discord 서버/대화방 CryptoDevs Discord – 이더리움 개발 디스코드 서버/대화방

  • format_list_bulleted BlockChain/이더리움
  • · 2023. 9. 3.
  • textsms

[프로그래머스 | 자바스크립트] 숨어있는 숫자의 덧셈(2)

솔루션 const solution = (my_string) => { const nums = my_string.match(/[0-9]+/g); const answer = nums ? nums.map((num) => +num).reduce((a, c) => a + c, 0) : 0; console.log(answer); return answer; }; 솔루션 function solution(my_string) { const answer = my_string.split(/\D+/).reduce((acc, cur) => acc + Number(cur), 0); console.log(answer); return answer; } 솔루션 function solution(n) { let answer = "" for(..

  • format_list_bulleted 프로그래머스(Javascript)/Level 0
  • · 2023. 4. 16.
  • textsms

[프로그래머스 | 자바스크립트] 안전지대

솔루션 function solution(board) { const isBombNearby = (r, c) => { const nearby = [ [-1, -1], [-1, 0], [-1, 1], [0, -1], [0, 1], [1, -1], [1, 0], [1, 1], ]; const isInBoard = (r, c) => r >= 0 && r = 0 && c isInBoard(r + dR, c + dC) && board[r + dR][c + dC] === 1 ); }; let answer = 0; for (let r = 0; r < board.length; r++) { for ..

  • format_list_bulleted 프로그래머스(Javascript)/Level 0
  • · 2023. 4. 16.
  • textsms

[프로그래머스 | 자바스크립트] 삼각형의 완성조건(2)

솔루션 function solution(sides) { const min = Math.min(...sides); const max1 = Math.max(...sides); const max2 = min + max1 - 1; return max2 - (max1 - min); } 솔루션 function solution(sides) { return Math.min(...sides) * 2 - 1; }

  • format_list_bulleted 프로그래머스(Javascript)/Level 0
  • · 2023. 3. 11.
  • textsms

[프로그래머스 | 자바스크립트] 외계어 사전

솔루션 const solution = (spell, dic) => { const sort = (str) => [...str].sort((a, b) => (a sort(dic) === sort(spell.join(""))) ? 1 : 2; console.log(answer); return answer; }; solution(["p", "o", "s"], ["sod", "eocd", "qixm", "adio", "soo"]); solution(["z", "d", "x"], ["def", "dww", "dzx", "loveaw"]); solution(["s", "o", "m", "d..

  • format_list_bulleted 프로그래머스(Javascript)/Level 0
  • · 2023. 3. 3.
  • textsms
  • navigate_before
  • 1
  • 2
  • 3
  • 4
  • ···
  • 33
  • navigate_next
Copyright © 쭈미로운 생활 All rights reserved.
Designed by JJuum

티스토리툴바